voxelman v0.9.0 (2022-05-10T16:23:35Z)
Dub
Repo
SharedHashSet
voxelman
container
sharedhashset
Undocumented in source.
shared final
class
SharedHashSet (
Key
Key
nullKey
=
Key
.
max
) {
alias
SetType
=
HashSet
!(
Key
)
;
this
();
bool
remove
(Key key);
void
put
(Key key);
bool
opIndex
(Key key);
size_t
length
();
}
Constructors
this
this
()
Undocumented in source.
Members
Aliases
SetType
alias
SetType
=
HashSet
!(
Key
)
Undocumented in source.
Functions
length
size_t
length
()
Undocumented in source. Be warned that the author may not have intended to support it.
opIndex
bool
opIndex
(Key key)
Undocumented in source. Be warned that the author may not have intended to support it.
put
void
put
(Key key)
Undocumented in source. Be warned that the author may not have intended to support it.
remove
bool
remove
(Key key)
Returns true if key was in set
Meta
Source
See Implementation
voxelman
container
sharedhashset
classes
SharedHashSet