Function OrderedMap.clear

Removes all map keys and clears the orderedKeys.

void clear();

Example

OrderedMap!(string, int) omap;
omap["c"] = 1;
omap["b"] = 2;
omap["a"] = 3;
omap.clear();
assert(omap.orderedKeys == []);
}