Returns the number of elements in the container.
The number of elements in the container.
HashTable!(string, int) hashTable; assert(hashTable.length == 0); hashTable["eight"] = 8; assert(hashTable.length == 1);
See Implementation
Returns the number of elements in the container.