IterAll implements the interface objinterface.Collection.
(ctx context.Context, callback func(rootObj objinterface.RootObject) (stop bool, err error))
| 299 | |
| 300 | // IterAll implements the interface objinterface.Collection. |
| 301 | func (pgs *Collection) IterAll(ctx context.Context, callback func(rootObj objinterface.RootObject) (stop bool, err error)) error { |
| 302 | return pgs.IterateSequences(ctx, func(seq *Sequence) (stop bool, err error) { |
| 303 | return callback(seq) |
| 304 | }) |
| 305 | } |
| 306 | |
| 307 | // IterIDs implements the interface objinterface.Collection. |
| 308 | func (pgs *Collection) IterIDs(ctx context.Context, callback func(identifier id.Id) (stop bool, err error)) error { |
nothing calls this directly
no test coverage detected