ModelSEED Database Iterator - ModelSEED/Model-SEED-core GitHub Wiki
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.