BTree.byKey

Iterate over all keys in the tree.

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

Return Value

Type: auto

Forward range of K, over the whole tree.

Meta