Tells whether the container contains any elements.
Whether the container is empty.
HashTable!(string, int) hashTable; assert(hashTable.empty); hashTable["five"] = 5; assert(!hashTable.empty);
See Implementation
Tells whether the container contains any elements.