EncodedObjectSliceIter implements EncodedObjectIter. It iterates over a series of objects stored in a slice and yields each one in turn when Next() is called. The EncodedObjectSliceIter must be closed with a call to Close() when it is no longer needed.
| 176 | // The EncodedObjectSliceIter must be closed with a call to Close() when it is |
| 177 | // no longer needed. |
| 178 | type EncodedObjectSliceIter struct { |
| 179 | series []plumbing.EncodedObject |
| 180 | } |
| 181 | |
| 182 | // NewEncodedObjectSliceIter returns an object iterator for the given slice of |
| 183 | // objects. |
nothing calls this directly
no outgoing calls
no test coverage detected