IterAll implements the interface objinterface.Collection.
(ctx context.Context, callback func(rootObj objinterface.RootObject) (stop bool, err error))
| 233 | |
| 234 | // IterAll implements the interface objinterface.Collection. |
| 235 | func (pgf *Collection) IterAll(ctx context.Context, callback func(rootObj objinterface.RootObject) (stop bool, err error)) error { |
| 236 | return pgf.IterateFunctions(ctx, func(f Function) (stop bool, err error) { |
| 237 | return callback(f) |
| 238 | }) |
| 239 | } |
| 240 | |
| 241 | // IterIDs implements the interface objinterface.Collection. |
| 242 | func (pgf *Collection) IterIDs(ctx context.Context, callback func(identifier id.Id) (stop bool, err error)) error { |
nothing calls this directly
no test coverage detected