Free frees the note interator
()
| 224 | |
| 225 | // Free frees the note interator |
| 226 | func (v *NoteIterator) Free() { |
| 227 | runtime.SetFinalizer(v, nil) |
| 228 | C.git_note_iterator_free(v.ptr) |
| 229 | } |
| 230 | |
| 231 | // Next returns the current item (note id & annotated id) and advances the |
| 232 | // iterator internally to the next item |
nothing calls this directly
no outgoing calls
no test coverage detected