(self: TR.Trie<V>)
| 244 | |
| 245 | /** @internal */ |
| 246 | export const size = <V>(self: TR.Trie<V>): number => (self as TrieImpl<V>)._root?.count ?? 0 |
| 247 | |
| 248 | /** @internal */ |
| 249 | export const isEmpty = <V>(self: TR.Trie<V>): boolean => size(self) === 0 |
no outgoing calls
no test coverage detected
searching dependent graphs…