View | Details | Raw Unified | Return to bug 17552
Collapse All | Expand All

(-)a/Koha/Objects.pm (-1 / +17 lines)
Lines 181-186 sub next { Link Here
181
    return $object;
181
    return $object;
182
}
182
}
183
183
184
=head3 Koha::Objects->reset();
185
186
Koha::Objects->reset();
187
188
resets iteration so the next call to next() will start agein
189
with the first object in a set.
190
191
=cut
192
193
sub reset {
194
    my ( $self ) = @_;
195
196
    $self->_resultset()->reset();
197
198
    return $self;
199
}
200
184
=head3 Koha::Objects->as_list();
201
=head3 Koha::Objects->as_list();
185
202
186
Koha::Objects->as_list();
203
Koha::Objects->as_list();
187
- 

Return to bug 17552