Complexity: O(log(s)), where s is the number of the keys with the same length as the input key.
StringMap!double map; assert(("c" in map) is null); map["c"] = 3.0; assert(*("c" in map) == 3.0);
See Implementation
Complexity: O(log(s)), where s is the number of the keys with the same length as the input key.