We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Abstract role / interface for iterators
while ( my $object = $itr->next ) { ... }
Return the next entry in the iterator. When the iterator is exhausted, return undef.
my @objects = $itr->all
Return an array of all the objects in the result.