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/tree.go | |
parent | 2b1efd219e1f20d9a0bc380a26074c9d8de2ae1f (diff) | |
download | go-git-1f39465975d56bbb02f5cdfb1e3e77f41c613f1d.tar.gz |
doc: improve object iterators godoc.
Diffstat (limited to 'plumbing/object/tree.go')
-rw-r--r-- | plumbing/object/tree.go | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/plumbing/object/tree.go b/plumbing/object/tree.go index 546dd74..3bcd80a 100644 --- a/plumbing/object/tree.go +++ b/plumbing/object/tree.go @@ -431,16 +431,17 @@ type TreeIter struct { s storer.EncodedObjectStorer } -// NewTreeIter returns a TreeIter for the given repository and underlying -// object iterator. +// NewTreeIter takes a storer.EncodedObjectStorer and a +// storer.EncodedObjectIter and returns a *TreeIter that iterates over all +// tree contained in the storer.EncodedObjectIter. // -// The returned TreeIter will automatically skip over non-tree objects. +// Any non-tree object returned by the storer.EncodedObjectIter is skipped. func NewTreeIter(s storer.EncodedObjectStorer, iter storer.EncodedObjectIter) *TreeIter { return &TreeIter{iter, s} } -// Next moves the iterator to the next tree 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 tree and returns a pointer to it. If +// there are no more trees, it returns io.EOF. func (iter *TreeIter) Next() (*Tree, error) { for { obj, err := iter.EncodedObjectIter.Next() |