| 717 | } |
| 718 | |
| 719 | type packfileIter struct { |
| 720 | pack billy.File |
| 721 | iter storer.EncodedObjectIter |
| 722 | seen map[plumbing.Hash]struct{} |
| 723 | |
| 724 | // tells whether the pack file should be left open after iteration or not |
| 725 | keepPack bool |
| 726 | } |
| 727 | |
| 728 | // NewPackfileIter returns a new EncodedObjectIter for the provided packfile |
| 729 | // and object type. Packfile and index file will be closed after they're |
nothing calls this directly
no outgoing calls
no test coverage detected