Is there a Perl solution for lazy lists this side of Perl 6? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T04:56:54Zhttp://stackoverflow.com/feeds/question/109880http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/109880/is-there-a-perl-solution-for-lazy-lists-this-side-of-perl-66Is there a Perl solution for lazy lists this side of Perl 6?Axeman2008-09-21T00:26:55Z2009-03-05T04:27:30Z
<p>Has anybody found a good solution for lazily-evaluated lists in Perl? I've tried a number of ways to turn something like </p>
<pre><code>for my $item ( map { ... } @list ) {
}
</code></pre>
<p>into a lazy evaluation--by tie-ing @list, for example. I'm trying to avoid breaking down and writing a source filter to do it, because they mess with your ability to debug the code. Has anybody had any success. Or do you just have to break down and use a while loop? </p>
<p><strong>Note:</strong> I guess that I should mention that I'm kind of hooked on sometimes long grep-map chains for functionally transforming lists. So it's not so much the foreach loop or the while loop. It's that map expressions tend to pack more functionality into the same vertical space. </p>
http://stackoverflow.com/questions/109880/is-there-a-perl-solution-for-lazy-lists-this-side-of-perl-6/109899#1098992Answer by jkramer for Is there a Perl solution for lazy lists this side of Perl 6?jkramer2008-09-21T00:56:39Z2008-09-21T01:02:10Z<p>If I remember correctly, for/foreach do get the whole list first anyways, so a lazily evaluated list would be read completely and then it would start to iterate through the elements. Therefore, I think there's no other way than using a while loop. But I may be wrong.</p>
<p>The advantage of a while loop is that you can fake the sensation of a lazily evaluated list with a code reference:</p>
<pre><code>my $list = sub { return calculate_next_element };
while(defined(my $element = &$list)) {
...
}
</code></pre>
<p>After all, I guess a tie is as close as you can get in Perl 5.</p>
http://stackoverflow.com/questions/109880/is-there-a-perl-solution-for-lazy-lists-this-side-of-perl-6/109907#1099073Answer by Fhoxh for Is there a Perl solution for lazy lists this side of Perl 6?Fhoxh2008-09-21T01:08:25Z2008-09-21T01:08:25Z<p><a href="http://perldesignpatterns.com/?LazyEvaluation" rel="nofollow">Use an iterator</a> or consider using <a href="http://search.cpan.org/dist/Tie-LazyList/" rel="nofollow">Tie::LazyList</a> from CPAN (which is a tad dated).</p>
http://stackoverflow.com/questions/109880/is-there-a-perl-solution-for-lazy-lists-this-side-of-perl-6/109908#1099084Answer by bentilly for Is there a Perl solution for lazy lists this side of Perl 6?bentilly2008-09-21T01:09:58Z2008-09-21T09:38:10Z<p>There is at least one special case where for and foreach have been optimized to not generate the whole list at once. And that is the range operator. So you have the option of saying:</p>
<pre><code>for my $i (0..$#list) {
my $item = some_function($list[$i]);
...
}
</code></pre>
<p>and this will iterate through the array, transformed however you like, without creating a long list of values up front.</p>
<p>If you wish your map statement to return variable numbers of elements, you could do this instead:</p>
<pre><code>for my $i (0..$#array) {
for my $item (some_function($array[$i])) {
...
}
}
</code></pre>
<p>If you wish more pervasive laziness than this, then your best option is to learn how to use closures to generate lazy lists. MJD's excellent book <em>Higher Order Perl</em> can walk you through those techniques. However do be warned that they will involve far larger changes to your code.</p>
http://stackoverflow.com/questions/109880/is-there-a-perl-solution-for-lazy-lists-this-side-of-perl-6/109920#10992012Answer by pjf for Is there a Perl solution for lazy lists this side of Perl 6?pjf2008-09-21T01:16:22Z2008-09-21T01:16:22Z<p>As mentioned previously, for(each) is an eager loop, so it wants to evaluate the entire list before starting.</p>
<p>For simplicity, I would recommend using an iterator object or closure rather than trying to have a lazily evaluated array. While you <em>can</em> use a tie to have a lazily evaluated infinite list, you can run into troubles if you ever ask (directly or indirectly, as in the foreach above) for the entire list (or even the size of the entire list).</p>
<p>Without writing a full class or using any modules, you can make a simple iterator factory just by using closures:</p>
<pre><code>sub make_iterator {
my ($value, $max, $step) = @_;
return sub {
return if $value > $max; # Return undef when we overflow max.
my $current = $value;
$value += $step; # Increment value for next call.
return $current; # Return current iterator value.
};
}
</code></pre>
<p>And then to use it:</p>
<pre><code># All the even numbers between 0 - 100.
my $evens = make_iterator(0, 100, 2);
while (defined( my $x = $evens->() ) ) {
print "$x\n";
}
</code></pre>
<p>There's also the <a href="http://search.cpan.org/perldoc?Tie::Array::Lazy" rel="nofollow">Tie::Array::Lazy</a> module on the CPAN, which provides a much richer and fuller interface to lazy arrays. I've not used the module myself, so your mileage may vary.</p>
<p>All the best,</p>
<p>Paul</p>
http://stackoverflow.com/questions/109880/is-there-a-perl-solution-for-lazy-lists-this-side-of-perl-6/111527#1115278Answer by Aristotle Pagaltzis for Is there a Perl solution for lazy lists this side of Perl 6?Aristotle Pagaltzis2008-09-21T17:45:11Z2008-09-21T17:53:16Z<p>[Sidenote: Be aware that each individual step along a map/grep chain is eager. If you give it a big list all at once, your problems start much sooner than at the final <code>foreach</code>.]</p>
<p>What you can do to avoid a complete rewrite is to wrap your loop with an outer loop. Instead of writing this:</p>
<pre><code>for my $item ( map { ... } grep { ... } map { ... } @list ) { ... }
</code></pre>
<p>… write it like this:</p>
<pre><code>while ( my $input = calculcate_next_element() ) {
for my $item ( map { ... } grep { ... } map { ... } $input ) { ... }
}
</code></pre>
<p>This saves you from having to significantly rewrite your existing code, and as long as the list does not grow by several orders of magnitude during transformation, you get pretty nearly all the benefit that a rewrite to iterator style would offer.</p>
http://stackoverflow.com/questions/109880/is-there-a-perl-solution-for-lazy-lists-this-side-of-perl-6/111640#1116406Answer by brian d foy for Is there a Perl solution for lazy lists this side of Perl 6?brian d foy2008-09-21T18:30:18Z2008-09-21T18:30:18Z<p>If you want to make lazy lists, you'll have to write your own iterator. Once you have that, you can use something like <A href="http://search.cpan.org/dist/Object-Iterate" rel="nofollow">Object::Iterate</a> which has iterator-aware versions of map and grep. Take a look at the source for that module: it's pretty simple and you'll see how to write your own iterator-aware subroutines.</p>
<p>Good luck, :)</p>
http://stackoverflow.com/questions/109880/is-there-a-perl-solution-for-lazy-lists-this-side-of-perl-6/113832#1138323Answer by Corion for Is there a Perl solution for lazy lists this side of Perl 6?Corion2008-09-22T08:42:49Z2008-09-22T08:42:49Z<p>I asked a similar question at <a href="http://perlmonks.org/?node_id=712235" rel="nofollow">perlmonks.org</a>, and BrowserUk gave a really good framework <a href="http://perlmonks.org/?node_id=712271" rel="nofollow">in his answer</a>. Basically, a convenient way to get lazy evaluation is to spawn threads for the computation, at least as long as you're sure you want the results, Just Not Now. If you want lazy evaluation not to reduce latency but to avoid calculations, my approach won't help because it relies on a push model, not a pull model. Possibly using <a href="http://search.cpan.org/perldoc?Coro" rel="nofollow">Coro</a>outines, you can turn this approach into a (single-threaded) pull model as well.</p>
<p>While pondering this problem, I also investigated tie-ing an array to the thread results to make the Perl program flow more like <code>map</code>, but so far, I like my API of introducing the <code>parallel</code> "keyword" (an object constructor in disguise) and then calling methods on the result. The more documented version of the code will be posted as a reply to <a href="http://perlmonks.org/?node_id=712235" rel="nofollow">that thread</a> and possibly released onto CPAN as well.</p>