Package it.unimi.dsi.fastutil.booleans
Interface BooleanSet
- All Superinterfaces:
BooleanCollection
,BooleanIterable
,Collection<Boolean>
,Iterable<Boolean>
,Set<Boolean>
- All Known Implementing Classes:
AbstractBooleanSet
,BooleanArraySet
,BooleanOpenHashSet
,BooleanSets.EmptySet
,BooleanSets.Singleton
,BooleanSets.SynchronizedSet
,BooleanSets.UnmodifiableSet
A type-specific
Set
; provides some additional methods that use polymorphism to avoid
(un)boxing.
Additionally, this interface strengthens (again) iterator()
.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
Deprecated.Please use the corresponding type-specific method instead.default boolean
Deprecated.Please use the corresponding type-specific method instead.iterator()
Returns a type-specific iterator on the elements of this set.static BooleanSet
of()
Returns an immutable empty set.static BooleanSet
of
(boolean e) Returns an immutable set with the element given.static BooleanSet
of
(boolean... a) Returns an immutable list with the elements given.static BooleanSet
of
(boolean e0, boolean e1) Returns an immutable set with the elements given.static BooleanSet
of
(boolean e0, boolean e1, boolean e2) Returns an immutable set with the elements given.default boolean
rem
(boolean k) Deprecated.Please useremove()
instead.boolean
remove
(boolean k) Removes an element from this set.default boolean
Deprecated.Please use the corresponding type-specific method instead.default BooleanSpliterator
Returns a type-specific spliterator on the elements of this set.Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanCollection
add, addAll, contains, containsAll, removeAll, removeIf, removeIf, retainAll, toArray, toBooleanArray, toBooleanArray
Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanIterable
forEach, forEach
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
-
Method Details
-
iterator
BooleanIterator iterator()Returns a type-specific iterator on the elements of this set.- Specified by:
iterator
in interfaceBooleanCollection
- Specified by:
iterator
in interfaceBooleanIterable
- Specified by:
iterator
in interfaceCollection<Boolean>
- Specified by:
iterator
in interfaceIterable<Boolean>
- Specified by:
iterator
in interfaceSet<Boolean>
- Returns:
- a type-specific iterator on the elements of this set.
- See Also:
- API Notes:
- This specification strengthens the one given in
Iterable.iterator()
, which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extendsSet
.Also, this is generally the only
iterator
method subclasses should override.
-
spliterator
Returns a type-specific spliterator on the elements of this set.Set spliterators must report at least
Spliterator.DISTINCT
.See
Set.spliterator()
for more documentation on the requirements of the returned spliterator.- Specified by:
spliterator
in interfaceBooleanCollection
- Specified by:
spliterator
in interfaceBooleanIterable
- Specified by:
spliterator
in interfaceCollection<Boolean>
- Specified by:
spliterator
in interfaceIterable<Boolean>
- Specified by:
spliterator
in interfaceSet<Boolean>
- Returns:
- a type-specific spliterator on the elements of this collection.
- Since:
- 8.5.0
- API Notes:
- This specification strengthens the one given in
Collection.spliterator()
, which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extendsSet
.Also, this is generally the only
spliterator
method subclasses should override. - Implementation Specification:
- The default implementation returns a late-binding spliterator (see
Spliterator
for documentation on what binding policies mean) that wraps this instance's type specificiterator()
.Additionally, it reports
Spliterator.SIZED
andSpliterator.DISTINCT
. - Implementation Notes:
- As this default implementation wraps the iterator, and
Iterator
is an inherently linear API, the returned spliterator will yield limited performance gains when run in parallel contexts, as the returned spliterator'strySplit()
will have linear runtime.
-
remove
boolean remove(boolean k) Removes an element from this set.- See Also:
- API Notes:
- Note that the corresponding method of a type-specific collection is
rem()
. This unfortunate situation is caused by the clash with the similarly named index-based method in theList
interface.
-
remove
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
remove
in interfaceBooleanCollection
- Specified by:
remove
in interfaceCollection<Boolean>
- Specified by:
remove
in interfaceSet<Boolean>
-
add
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
add
in interfaceBooleanCollection
- Specified by:
add
in interfaceCollection<Boolean>
- Specified by:
add
in interfaceSet<Boolean>
-
contains
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
contains
in interfaceBooleanCollection
- Specified by:
contains
in interfaceCollection<Boolean>
- Specified by:
contains
in interfaceSet<Boolean>
-
rem
Deprecated.Please useremove()
instead.Removes an element from this set.This method is inherited from the type-specific collection this type-specific set is based on, but it should not used as this interface reinstates
remove()
as removal method.- Specified by:
rem
in interfaceBooleanCollection
- See Also:
-
of
Returns an immutable empty set.- Returns:
- an immutable empty set.
-
of
Returns an immutable set with the element given.- Parameters:
e
- an element.- Returns:
- an immutable set containing
e
.
-
of
Returns an immutable set with the elements given.- Parameters:
e0
- the first element.e1
- the second element.- Returns:
- an immutable set containing
e0
ande1
. - Throws:
IllegalArgumentException
- if there were duplicate entries.
-
of
Returns an immutable set with the elements given.- Parameters:
e0
- the first element.e1
- the second element.e2
- the third element.- Returns:
- an immutable set containing
e0
,e1
, ande2
. - Throws:
IllegalArgumentException
- if there were duplicate entries.
-
of
Returns an immutable list with the elements given.- Parameters:
a
- the list of elements that will be in the final set.- Returns:
- an immutable set containing the elements in
a
. - Throws:
IllegalArgumentException
- if there are any duplicate entries.
-