public interface BooleanCollection extends Collection<Boolean>, BooleanIterable
Collection
; provides some additional methods that use polymorphism to avoid (un)boxing.
Additionally, this class defines strengthens (again) iterator()
and defines a slightly different semantics for toArray(Object[])
.
Collection
Modifier and Type | Method and Description |
---|---|
boolean |
add(boolean key) |
boolean |
addAll(BooleanCollection c) |
BooleanIterator |
booleanIterator()
Deprecated.
As of
fastutil 5, replaced by iterator() . |
boolean |
contains(boolean key) |
boolean |
containsAll(BooleanCollection c) |
BooleanIterator |
iterator()
Returns a type-specific iterator on the elements of this collection.
|
boolean |
rem(boolean key)
|
boolean |
removeAll(BooleanCollection c) |
boolean |
retainAll(BooleanCollection c) |
boolean[] |
toArray(boolean[] a)
Returns a primitive type array containing the items of this collection.
|
<T> T[] |
toArray(T[] a)
Returns an containing the items of this collection; the runtime type of the returned array is that of the specified array.
|
boolean[] |
toBooleanArray()
Returns a primitive type array containing the items of this collection.
|
boolean[] |
toBooleanArray(boolean[] a)
Returns a primitive type array containing the items of this collection.
|
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, parallelStream, remove, removeAll, removeIf, retainAll, size, spliterator, stream, toArray
BooleanIterator iterator()
Note that 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 extends Collection
.
iterator
in interface BooleanIterable
iterator
in interface Collection<Boolean>
iterator
in interface Iterable<Boolean>
@Deprecated BooleanIterator booleanIterator()
fastutil
5, replaced by iterator()
.iterator()
<T> T[] toArray(T[] a)
Warning: Note that, contrarily to Collection.toArray(Object[])
, this methods just writes all elements of this collection: no special value will be added after the
last one.
toArray
in interface Collection<Boolean>
a
- if this array is big enough, it will be used to store this collection.Collection.toArray(Object[])
boolean contains(boolean key)
Collection.contains(Object)
boolean[] toBooleanArray()
Collection.toArray()
boolean[] toBooleanArray(boolean[] a)
Note that, contrarily to Collection.toArray(Object[])
, this methods just writes all elements of this collection: no special value will be added after the last one.
a
- if this array is big enough, it will be used to store this collection.Collection.toArray(Object[])
boolean[] toArray(boolean[] a)
Note that, contrarily to Collection.toArray(Object[])
, this methods just writes all elements of this collection: no special value will be added after the last one.
a
- if this array is big enough, it will be used to store this collection.Collection.toArray(Object[])
boolean add(boolean key)
Collection.add(Object)
boolean rem(boolean key)
remove()
, but the clash with the similarly named index-based method in the List
interface
forces us to use a distinguished name. For simplicity, the set interfaces reinstates remove()
.Collection.remove(Object)
boolean addAll(BooleanCollection c)
Collection.addAll(Collection)
boolean containsAll(BooleanCollection c)
Collection.containsAll(Collection)
boolean removeAll(BooleanCollection c)
Collection.removeAll(Collection)
boolean retainAll(BooleanCollection c)
Collection.retainAll(Collection)