| 8 | ) |
| 9 | |
| 10 | type commitPathIter struct { |
| 11 | pathFilter func(string) bool |
| 12 | sourceIter CommitIter |
| 13 | currentCommit *Commit |
| 14 | checkParent bool |
| 15 | } |
| 16 | |
| 17 | // NewCommitPathIterFromIter returns a commit iterator which performs diffTree between |
| 18 | // successive trees returned from the commit iterator from the argument. The purpose of this is |
nothing calls this directly
no outgoing calls
no test coverage detected