Jean-Sébastien Guay wrote:
http://en.wikipedia.org/wiki/Optimization_(computer_science)
Optimization (computer science
From Wikipedia, the free encyclopedia.
(Wikipedia does not have an article on this topic yet. To start the
article, click Edit this page.)
?? :( I was wanting to read it.
> > http://en.wikipedia.org/wiki/Optimization_(computer_science)
>
> Optimization (computer science
>
> From Wikipedia, the free encyclopedia.
>
> (Wikipedia does not have an article on this topic yet. To start the
> article, click Edit this page.)
>
> ?? :( I was wanting to read it...
Jeff 'japhy' Pinyan wrote:
The lesson to learn is:
Premature optimization is the root of all evil.
Got ya ;p
http://en.wikipedia.org/wiki/Optimization_(computer_science)
Optimization (computer science
From Wikipedia, the free encyclopedia.
(Wikipedia does not have an article on this topi
The lesson to learn is:
Premature optimization is the root of all evil.
http://en.wikipedia.org/wiki/Optimization_(computer_science)
--
Jeff "japhy" Pinyan [EMAIL PROTECTED] http://www.pobox.com/~japhy/
RPI Acacia brother #734 http://www.perlmonks.org/ http://www.cpan.org/
CPAN
Ricardo SIGNES wrote:
* "JupiterHost.Net" <[EMAIL PROTECTED]> [2004-05-13T11:35:58]
Bob Showalter wrote:
for instance:
$newvariable = "$howdy";
should be:
$newvariable = $howdy;
That's not an appropriate optimization. Perl objects can overload
stringification.
Interesting...
So when would tha
* "JupiterHost.Net" <[EMAIL PROTECTED]> [2004-05-13T11:35:58]
> Bob Showalter wrote:
> >> for instance:
> >> $newvariable = "$howdy";
> >> should be:
> >> $newvariable = $howdy;
> >
> >That's not an appropriate optimization. Perl objects can overload
> >stringification.
>
> Interesting...
> So
JupiterHost.Net wrote:
> Hello list,
>
> Perl::Tidy is very excellent for making source look nice.
> I was wondering if anyone knew of anything that is the same type of
> idea but it optomizes your Perl code to run a bit faster:
> for instance:
> $newvariable = "$howdy";
> should be:
>