BTreeMapImplementation.inorder

Visits the tree in the inorder order.

  1. int inorder(int delegate(ref KeyType key, ref ValueType value) dg)
    struct BTreeMapImplementation(KeyType, ValueType, int tree_degree)
    package
    int
    inorder
    (
    scope int delegate
    (
    ref KeyType key
    ,
    ref ValueType value
    )
    dg
    )
  2. int inorder(int delegate(ref ValueType value) dg)

Parameters

dg int delegate
(
ref KeyType key
,
ref ValueType value
)

delegate to call for each visited element. Delegate should return non-zero value if the visiting should be aborted.

Return Value

Type: int

return value of the last dg call.

Meta