IterAll implements the interface objinterface.Collection.
(ctx context.Context, callback func(rootObj objinterface.RootObject) (stop bool, err error))
| 82 | |
| 83 | // IterAll implements the interface objinterface.Collection. |
| 84 | func (pgc *Collection) IterAll(ctx context.Context, callback func(rootObj objinterface.RootObject) (stop bool, err error)) error { |
| 85 | return pgc.IterateCasts(ctx, func(c Cast) (stop bool, err error) { |
| 86 | return callback(c) |
| 87 | }) |
| 88 | } |
| 89 | |
| 90 | // IterIDs implements the interface objinterface.Collection. |
| 91 | func (pgc *Collection) IterIDs(ctx context.Context, callback func(identifier id.Id) (stop bool, err error)) error { |
nothing calls this directly
no test coverage detected