HashMap.length

The length of the map.

struct HashMap(K, V)
@nogc @safe pure nothrow @property
size_t
length
const
(
)
if (
isAssignmentCopyable!(Unqual!K) &&
isAssignmentCopyable!(Unqual!V)
)

Return Value

Type: size_t

The number of entries in the map, in constant time.

Meta