()
| 357 | } |
| 358 | |
| 359 | func (object *OdbObject) Len() (len uint64) { |
| 360 | ret := uint64(C.git_odb_object_size(object.ptr)) |
| 361 | runtime.KeepAlive(object) |
| 362 | return ret |
| 363 | } |
| 364 | |
| 365 | func (object *OdbObject) Type() ObjectType { |
| 366 | ret := ObjectType(C.git_odb_object_type(object.ptr)) |