()
| 49 | } |
| 50 | |
| 51 | func (this *Table[T]) Namespace() []byte { |
| 52 | var dest = make([]byte, len(this.rawNamespace)) |
| 53 | copy(dest, this.rawNamespace) |
| 54 | return dest |
| 55 | } |
| 56 | |
| 57 | func (this *Table[T]) SetNamespace(namespace []byte) { |
| 58 | this.rawNamespace = namespace |
no outgoing calls
no test coverage detected