dstruct ~master (2021-11-04T09:31:25.4244285)
Dub
Repo
KeyValueRange
dstruct
map
A range through a series of items in the map.
struct
KeyValueRange (
K
V
) {
this
(Entry!(K, V)[] bucketList);
this
(const(Entry!(K, V)[]) bucketList);
inout
(
typeof
(
this
))
save
();
bool
empty
[@property getter];
inout
(
Entry
!(
K
,
V
))
front
[@property getter];
void
popFront
();
}
Constructors
this
this
(Entry!(K, V)[] bucketList)
Undocumented in source.
this
this
(const(Entry!(K, V)[]) bucketList)
Undocumented in source.
Members
Functions
popFront
void
popFront
()
Undocumented in source.
save
inout
(
typeof
(
this
))
save
()
Undocumented in source. Be warned that the author may not have intended to support it.
Properties
empty
bool
empty
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
front
inout
(
Entry
!(
K
,
V
))
front
[@property getter]
Undocumented in source.
Meta
Source
See Implementation
dstruct
map
functions
byKey
byKeyValue
byValue
structs
Entry
HashMap
KeyRange
KeyValueRange
ValueRange
templates
HashMapKeyType
HashMapValueType
A range through a series of items in the map.