byValue

Produce a range through the values of a map.

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

Parameters

map
Type: immutable(HashMap!(K, V))

A map.

Return Value

Type: auto

A range running through the values in the map.

Meta