byValue

Produce a range through the values of a map.

  1. auto byValue(auto ref HashMap!(K, V) map)
    @nogc @safe pure nothrow
    byValue
    (
    K
    V
    )
    (
    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)

Parameters

map
Type: HashMap!(K, V)

A map.

Return Value

Type: auto

A range running through the values in the map.

Meta