dstruct ~master (2015-04-27T00:40:08Z)
Home
Dub
Repo
KeyRange
dstruct
map
This is a range which runs through a series of keys in map.
struct
KeyRange (
K
V
) {
inout
(
typeof
(
this
))
save
()
;
bool
empty
[@property getter];
inout
(
K
)
front
[@property getter];
void
popFront
()
;
}
Members
Functions
popFront
void
popFront
()
save
inout
(
typeof
(
this
))
save
()
Properties
empty
bool
empty
[@property getter]
front
inout
(
K
)
front
[@property getter]
Meta
Source
See Implementation
dstruct
map
functions
byKey
byKeyValue
byValue
structs
Entry
HashMap
KeyRange
KeyValueRange
ValueRange
This is a range which runs through a series of keys in map.