BTree.byKeyValue

Iterate over all keys and values simultaneously.

  1. auto byKeyValue()
    struct BTree(K, V, alias less = "a < b", bool allowDuplicates = false, bool duplicateKeyIsUB = false)
    nothrow @nogc
    byKeyValue
    ()
  2. auto byKeyValue()

Return Value

Type: auto

Forward range of a Voldemort struct that exposes .key and .value of type K and V respectively.

Meta