Patterns in Perl 24

Iterator

for my $color ( $picture->colors() ) {
    ...
}
my $sth = $dbh->execute($sql);
while ( my $row = $sth->fetchrow_hashref() ) {
    ...
}
Copyright © 2005-2006 David Rolsky