Features returns a bit-flag of Feature values indicating which features the loaded libgit2 library has.
()
| 24 | // Features returns a bit-flag of Feature values indicating which features the |
| 25 | // loaded libgit2 library has. |
| 26 | func Features() Feature { |
| 27 | features := C.git_libgit2_features() |
| 28 | |
| 29 | return Feature(features) |
| 30 | } |
no test coverage detected
searching dependent graphs…