StringMap.opAssign

Reset the associtave array

struct StringMap(T, U = uint)
ref return @safe pure nothrow @nogc
opAssign
()
(
typeof(null)
)
if (
isMutable!T &&
!__traits(hasMember, T, "opPostMove")
&&
__traits(isUnsigned, U)
)

Examples

StringMap!int map = ["key" : 1];
map = null;

Meta