(realKey string)
| 302 | } |
| 303 | |
| 304 | func (this *Table[T]) FullKey(realKey string) []byte { |
| 305 | return append(this.Namespace(), KeyPrefix+realKey...) |
| 306 | } |
| 307 | |
| 308 | func (this *Table[T]) FullKeyBytes(realKeyBytes []byte) []byte { |
| 309 | var k = append(this.Namespace(), KeyPrefix...) |
no test coverage detected