HashMap.values

struct HashMap(K, V, alias hashFunction = generateHash!K, bool supportGC = shouldAddGCRange!K || shouldAddGCRange!V)
const @property
V[]
values
()
out (result) { assert (result.length == _length); }

Return Value

Type: V[]

a GC-allocated array containing the values contained in this map.

Meta