()
| 61 | } |
| 62 | |
| 63 | func (i *BranchIterator) Free() { |
| 64 | runtime.SetFinalizer(i, nil) |
| 65 | C.git_branch_iterator_free(i.ptr) |
| 66 | } |
| 67 | |
| 68 | func (i *BranchIterator) ForEach(f BranchIteratorFunc) error { |
| 69 | b, t, err := i.Next() |
nothing calls this directly
no outgoing calls
no test coverage detected