ae v0.0.3053 (2021-06-01T17:26:23Z)
Home
Dub
Repo
Set
ae
utils
container
set
Unordered array with O(1) insertion and removal
struct
Set (
T
uint
INITSIZE
= 64
) {
T
[]
data
;
size_t
size
;
void
opOpAssign
(T item);
void
remove
(size_t index);
T
[]
items
[@property getter];
}
Members
Functions
opOpAssign
void
opOpAssign
(T item)
Undocumented in source. Be warned that the author may not have intended to support it.
remove
void
remove
(size_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
Properties
items
T
[]
items
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
data
T
[]
data
;
Undocumented in source.
size
size_t
size
;
Undocumented in source.
Meta
Source
See Implementation
ae
utils
container
set
structs
Set
Unordered array with O(1) insertion and removal