Removes all elements.
HashTable!(string, int) hashTable; hashTable["five"] = 5; assert(!hashTable.empty); hashTable.clear(); assert(hashTable.empty);
See Implementation
Removes all elements.