byKey

Produce a range through the keys of a map.

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

Parameters

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

A map.

Return Value

Type: auto

A range running through the keys in the map.

Meta