diff options
author | Santiago M. Mola <santi@mola.io> | 2017-02-07 10:02:20 +0100 |
---|---|---|
committer | Santiago M. Mola <santi@mola.io> | 2017-02-07 10:02:20 +0100 |
commit | 1f39465975d56bbb02f5cdfb1e3e77f41c613f1d (patch) | |
tree | ac6b8caf7237a88092cbd20880d1beb118a668e3 /plumbing/object/object.go | |
parent | 2b1efd219e1f20d9a0bc380a26074c9d8de2ae1f (diff) | |
download | go-git-1f39465975d56bbb02f5cdfb1e3e77f41c613f1d.tar.gz |
doc: improve object iterators godoc.
Diffstat (limited to 'plumbing/object/object.go')
-rw-r--r-- | plumbing/object/object.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/plumbing/object/object.go b/plumbing/object/object.go index 5512932..53c7e6c 100644 --- a/plumbing/object/object.go +++ b/plumbing/object/object.go @@ -158,14 +158,15 @@ type ObjectIter struct { s storer.EncodedObjectStorer } -// NewObjectIter returns a ObjectIter for the given repository and underlying -// object iterator. +// NewObjectIter takes a storer.EncodedObjectStorer and a +// storer.EncodedObjectIter and returns an *ObjectIter that iterates over all +// objects contained in the storer.EncodedObjectIter. func NewObjectIter(s storer.EncodedObjectStorer, iter storer.EncodedObjectIter) *ObjectIter { return &ObjectIter{iter, s} } -// Next moves the iterator to the next object and returns a pointer to it. If it -// has reached the end of the set it will return io.EOF. +// Next moves the iterator to the next object and returns a pointer to it. If +// there are no more objects, it returns io.EOF. func (iter *ObjectIter) Next() (Object, error) { for { obj, err := iter.EncodedObjectIter.Next() |