Add a single character to the set
See the Rust documentation for add_char
for more information.
Add an inclusive range of characters to the set
See the Rust documentation for add_range
for more information.
Add all elements that belong to the provided set to the set
See the Rust documentation for add_set
for more information.
Build this into a set
This object is repopulated with an empty builder
See the Rust documentation for build
for more information.
Complements this set
(Elements in this set are removed and vice versa)
See the Rust documentation for complement
for more information.
Complement a single character to the set
(Characters which are in this set are removed and vice versa)
See the Rust documentation for complement_char
for more information.
Complement an inclusive range of characters from the set
(Characters which are in this set are removed and vice versa)
See the Rust documentation for complement_range
for more information.
Complement all elements that belong to the provided set from the set
(Characters which are in this set are removed and vice versa)
See the Rust documentation for complement_set
for more information.
Returns whether this set is empty
See the Rust documentation for is_empty
for more information.
Remove a single character to the set
See the Rust documentation for remove_char
for more information.
Remove an inclusive range of characters from the set
See the Rust documentation for remove_range
for more information.
Remove all elements that belong to the provided set from the set
See the Rust documentation for remove_set
for more information.
Removes all elements from the set except a single character
See the Rust documentation for retain_char
for more information.
Removes all elements from the set except an inclusive range of characters f
See the Rust documentation for retain_range
for more information.
Removes all elements from the set except all elements in the provided set
See the Rust documentation for retain_set
for more information.
Static
createMake a new set builder containing nothing
See the Rust documentation for new
for more information.
See the Rust documentation for
CodePointInversionListBuilder
for more information.