GetIndexByHash gets the index in the commit graph from commit hash, if available
(h plumbing.Hash)
| 41 | type Index interface { |
| 42 | // GetIndexByHash gets the index in the commit graph from commit hash, if available |
| 43 | GetIndexByHash(h plumbing.Hash) (uint32, error) |
| 44 | // GetHashByIndex gets the hash given an index in the commit graph |
| 45 | GetHashByIndex(i uint32) (plumbing.Hash, error) |
| 46 | // GetNodeByIndex gets the commit node from the commit graph using index |
no outgoing calls