The OpenD Programming Language

StringMap.opAssign

Reset the associative array

struct StringMap(T)
ref return @safe pure nothrow @nogc
opAssign
()
(
typeof(null)
)

Examples

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

Meta