OrderedMap

An associative array which retains the order in which elements were added.

Constructors

this
this(V[K] aa)

Convert from regular AA

Members

Functions

clear
void clear()
Undocumented in source. Be warned that the author may not have intended to support it.
get
inout(V) get(K k, inout(V) defaultValue)
Undocumented in source. Be warned that the author may not have intended to support it.
getOrAdd
V getOrAdd(K k)
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(ref K k, ref V v) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(const ref K k, const ref V v) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opAssign
void opAssign(V[K] aa)
Undocumented in source. Be warned that the author may not have intended to support it.
opIn_r
inout(V)* opIn_r(K k)
Undocumented in source. Be warned that the author may not have intended to support it.
opIndex
inout(V) opIndex(K k)
Undocumented in source. Be warned that the author may not have intended to support it.
opIndexAssign
V opIndexAssign(V v, K k)
Undocumented in source. Be warned that the author may not have intended to support it.
opIndexOpAssign
V opIndexOpAssign(V v, K k)
Undocumented in source. Be warned that the author may not have intended to support it.
opIndexUnary
V opIndexUnary(K k)
Undocumented in source. Be warned that the author may not have intended to support it.
remove
void remove(K k)
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

dup
typeof(this) dup [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
length
size_t length [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

index
size_t[K] index;
Undocumented in source.
keys
K[] keys;
Undocumented in source.
values
V[] values;
Undocumented in source.

Meta