(table BytesTable)
| 13 | var _ Any = (*Bytes)(nil) |
| 14 | |
| 15 | func NewBytes(table BytesTable) *Bytes { |
| 16 | return &Bytes{table} |
| 17 | } |
| 18 | |
| 19 | func NewBytesEmpty(cap uint32) *Bytes { |
| 20 | return NewBytes(NewBytesTableEmpty(cap)) |
no outgoing calls
no test coverage detected