CommitIter is a generic closable interface for iterating over commits.
| 548 | |
| 549 | // CommitIter is a generic closable interface for iterating over commits. |
| 550 | type CommitIter interface { |
| 551 | Next() (*Commit, error) |
| 552 | ForEach(func(*Commit) error) error |
| 553 | Close() |
| 554 | } |
| 555 | |
| 556 | // storerCommitIter provides an iterator from commits in an EncodedObjectStorer. |
| 557 | type storerCommitIter struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…