(slot uint32)
| 86 | } |
| 87 | |
| 88 | func (b BytesTable) Bytes(slot uint32) []byte { |
| 89 | return b.bytes[b.offsets[slot]:b.offsets[slot+1]] |
| 90 | } |
| 91 | |
| 92 | func (b BytesTable) String(slot uint32) string { |
| 93 | return string(b.bytes[b.offsets[slot]:b.offsets[slot+1]]) |
no outgoing calls