in reply to Re^2: grep, map vs. foreach performance
in thread grep, map vs. foreach performance
> perl -MO=Deparse -e"for(;;){}" for (;;) { (); } -e syntax OK > perl -MO=Deparse -e"while(1){}" for (;;) { (); } -e syntax OK > perl -MO=Deparse -e"for(1){}" foreach $_ (1) { (); } -e syntax OK >
~Particle *accelerates*
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: grep, map vs. foreach performance
by Flexx (Pilgrim) on Sep 04, 2002 at 14:26 UTC | |
|
Re^4: grep, map vs. foreach performance
by sauoq (Abbot) on Sep 04, 2002 at 21:57 UTC |