The OpenD Programming Language

TTree.opSlice

struct TTree(T, Allocator = Mallocator, bool allowDuplicates = false, alias less = "a < b", bool supportGC = shouldAddGCRange!T, size_t cacheLineSize = 64)
inout @trusted @nogc
opSlice
(
this This
)
()

Return Value

Type: auto

a range over the tree. Do not insert into the tree while iterating because you may iterate over the same value multiple times or skip some values entirely.

Meta