Creates a new empty Map.
Creates a new empty Set.
Tree-map, designed to replace std::map usage. The API should looks closely like the builtin associative arrays. O(lg(n)) insertion, removal, and search time. Map is designed to operate even without initialization through makeMap.
Set, designed to replace std::set usage. O(lg(n)) insertion, removal, and search time. Set is designed to operate even without initialization through makeSet.
This module implements an associative array. @nogc associative array, replacement for std::map and std::set.
Difference with Phobos is that the .init are valid and it uses a B-Tree underneath which makes it faster.