(index *Index, ptr *C.git_index_conflict_iterator)
| 622 | } |
| 623 | |
| 624 | func newIndexConflictIteratorFromC(index *Index, ptr *C.git_index_conflict_iterator) *IndexConflictIterator { |
| 625 | i := &IndexConflictIterator{ptr: ptr, index: index} |
| 626 | runtime.SetFinalizer(i, (*IndexConflictIterator).Free) |
| 627 | return i |
| 628 | } |
| 629 | |
| 630 | func (v *IndexConflictIterator) Index() *Index { |
| 631 | return v.index |
no outgoing calls
no test coverage detected
searching dependent graphs…