TrieBucket represents a bucket include multiple succinct trie.
| 61 | |
| 62 | // TrieBucket represents a bucket include multiple succinct trie. |
| 63 | type TrieBucket struct { |
| 64 | kvs tries |
| 65 | blockSize int |
| 66 | } |
| 67 | |
| 68 | // NewTrieBucket creates a trie bucket with default block size. |
| 69 | func NewTrieBucket() *TrieBucket { |
nothing calls this directly
no outgoing calls
no test coverage detected