Tagged Questions

12
votes
6answers
172 views

Why are Perl source filters bad and when is it OK to use them?

It is "common knowledge" that source filters are bad and should not be used in production code. When answering a a similar, but more specific question I couldn't find any good ref …
3
votes
5answers
98 views

What concerns should I have if I use Smart::Comments in development code?

I understand that Smart::Comments should not be used in production code, since it is a source filter. However, I have been using Smart::Comments in my development code and then c …
6
votes
7answers
343 views

Is there a Perl solution for lazy lists this side of Perl 6?

Has anybody found a good solution for lazily-evaluated lists in Perl? I've tried a number of ways to turn something like for my $item ( map { ... } @list ) { } into a lazy ev …