values

Produce a range through the values of a map.

  1. auto values(HashMap!(K, V) map)
  2. auto values(const(HashMap!(K, V)) map)
  3. auto values(immutable(HashMap!(K, V)) map)
    @nogc @trusted pure nothrow
    values
    (
    K
    V
    )
    (
    auto ref immutable(HashMap!(K, V)) map
    )

Parameters

map immutable(HashMap!(K, V))

A map.

Return Value

Type: auto

A range running through the values in the map.

Meta