ApplyHunkCallback is a callback that will be made per delta (file) when applying a patch.
func(*DiffHunk) (apply bool, err error)
| 890 | |
| 891 | // ApplyHunkCallback is a callback that will be made per delta (file) when applying a patch. |
| 892 | type ApplyHunkCallback func(*DiffHunk) (apply bool, err error) |
| 893 | |
| 894 | // ApplyDeltaCallback is a callback that will be made per hunk when applying a patch. |
| 895 | type ApplyDeltaCallback func(*DiffDelta) (apply bool, err error) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…