HashMap.values

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

Return Value

Type: auto

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

Meta