The OpenD Programming Language

StringMap.this

Initialize the associative array with default value.

  1. this(typeof(null) aa)
    struct StringMap(T)
    @safe pure nothrow @nogc
    this
    ()
    (
    typeof(null) aa
    )
  2. this(T[string] aa)
  3. this(string[] keys, T[] values)

Examples

Usefull for default funcion argument.

StringMap!int map = null; //

Meta