The OpenD Programming Language

TreeMap.byKeyValue

struct TreeMap(K, V, Allocator = Mallocator, alias less = "a < b", bool supportGC = shouldAddGCRange!K || shouldAddGCRange!V, size_t cacheLineSize = 64)
inout pure @trusted
byKeyValue
(
this This
)
()

Return Value

Type: auto

a range of the kev/value pairs in this map. The element type of this range is a struct with key and value fields.

Meta