()
| 450 | } |
| 451 | |
| 452 | func (v *Index) EntryCount() uint { |
| 453 | ret := uint(C.git_index_entrycount(v.ptr)) |
| 454 | runtime.KeepAlive(v) |
| 455 | return ret |
| 456 | } |
| 457 | |
| 458 | func (v *Index) EntryByIndex(index uint) (*IndexEntry, error) { |
| 459 | centry := C.git_index_get_byindex(v.ptr, C.size_t(index)) |
no outgoing calls