BTree.byKey

Iterate over all keys in the tree.

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

Return Value

Type: auto

Forward range of K, over the whole tree.

Meta