byKey

Produce a range through the keys of a map.

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

Parameters

map
Type: HashMap!(K, V)

A map.

Return Value

Type: auto

A range running through the keys in the map.

Meta