(slot uint32)
| 94 | } |
| 95 | |
| 96 | func (b BytesTable) UnsafeString(slot uint32) string { |
| 97 | return byteconv.UnsafeString(b.bytes[b.offsets[slot]:b.offsets[slot+1]]) |
| 98 | } |
| 99 | |
| 100 | func (b BytesTable) Slices() ([]uint32, []byte) { |
| 101 | return b.offsets, b.bytes |
no test coverage detected