anansi ~master (2019-12-19T23:28:59Z)
Dub
Repo
Set
anansi
container
set
struct
Set (
T
) {
this
(Stuff stuff);
this(this)
;
size_t
length
[@property getter];
bool
insert
(T value);
void
insert
(Stuff stuff);
bool
contains
(T value);
int
opApply
(int delegate(ref T) dg);
}
Constructors
this
this
(Stuff stuff)
Undocumented in source.
Postblit
this(this)
this(this)
Undocumented in source.
Members
Functions
contains
bool
contains
(T value)
Undocumented in source. Be warned that the author may not have intended to support it.
insert
void
insert
(Stuff stuff)
Inserts a range of elements into the set.
insert
bool
insert
(T value)
Inserts a new value into the set.
opApply
int
opApply
(int delegate(ref T) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
Properties
length
size_t
length
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
anansi
container
set
structs
Set