sli is a slice of a basic type.
| 51 | |
| 52 | // sli is a slice of a basic type. |
| 53 | type sli struct { |
| 54 | root uint64 |
| 55 | base uint64 |
| 56 | size uint64 |
| 57 | count uint64 |
| 58 | pool PoolID |
| 59 | elTy reflect.Type |
| 60 | } |
| 61 | |
| 62 | func (s sli) Root() uint64 { return s.root } |
| 63 | func (s sli) Base() uint64 { return s.base } |
nothing calls this directly
no outgoing calls
no test coverage detected