The OpenD Programming Language

HashMap.length

struct HashMap(K, V, Allocator = Mallocator, alias hashFunction = generateHash!K, bool supportGC = shouldAddGCRange!K || shouldAddGCRange!V, bool storeHash = true)
const nothrow pure @property @safe @nogc
size_t
length
()

Return Value

Type: size_t

the number of key/value pairs in this container.

Meta