in reply to Re: Iterating & Playing with Caller's Pads
in thread Iterating & Playing with Caller's Pads
I would also think that it might solve part of the problem of implementing coroutines and continuations.while( my @els = elements @array,3){ .. do something } # instead of my $iter = make_iter(@array); while (my @els = @{ $iter->() } ){ .. do something }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Iterating & Playing with Caller's Pads
by broquaint (Abbot) on Sep 27, 2002 at 13:20 UTC | |
by shotgunefx (Parson) on Sep 27, 2002 at 13:54 UTC |