()
| 351 | } |
| 352 | |
| 353 | func (object *OdbObject) Id() (oid *Oid) { |
| 354 | ret := newOidFromC(C.git_odb_object_id(object.ptr)) |
| 355 | runtime.KeepAlive(object) |
| 356 | return ret |
| 357 | } |
| 358 | |
| 359 | func (object *OdbObject) Len() (len uint64) { |
| 360 | ret := uint64(C.git_odb_object_size(object.ptr)) |
nothing calls this directly
no test coverage detected