return capacity of dictionary
| 108 | |
| 109 | // return capacity of dictionary |
| 110 | size_t SortedStringDictionary::capacity() const { |
| 111 | return keyToIndex_.bucket_count() * keyToIndex_.max_load_factor(); |
| 112 | } |
| 113 | |
| 114 | // return total length of strings in the dictioanry |
| 115 | uint64_t SortedStringDictionary::length() const { |
no outgoing calls