Package it.unimi.dsi.fastutil.booleans
Class AbstractBooleanSet
java.lang.Object
java.util.AbstractCollection<Boolean>
it.unimi.dsi.fastutil.booleans.AbstractBooleanCollection
it.unimi.dsi.fastutil.booleans.AbstractBooleanSet
- All Implemented Interfaces:
BooleanCollection,BooleanIterable,BooleanSet,Cloneable,Iterable<Boolean>,Collection<Boolean>,Set<Boolean>
- Direct Known Subclasses:
BooleanArraySet,BooleanOpenHashSet,BooleanSets.Singleton
public abstract class AbstractBooleanSet
extends AbstractBooleanCollection
implements Cloneable, BooleanSet
An abstract class providing basic methods for sets implementing a type-specific interface.
Note that the type-specific Set interface adds a type-specific remove() method,
as it is no longer harmful for subclasses. Thus, concrete subclasses of this class must implement
remove() (the rem() implementation of this class just delegates to
remove()).
-
Method Summary
Modifier and TypeMethodDescriptionbooleaninthashCode()Returns a hash code for this set.abstract BooleanIteratoriterator()Returns a type-specific iterator on the elements of this collection.booleanrem(boolean k) Deprecated.booleanremove(boolean k) Removes an element from this set.Methods inherited from class it.unimi.dsi.fastutil.booleans.AbstractBooleanCollection
add, add, addAll, addAll, contains, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toBooleanArray, toBooleanArray, toStringMethods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanCollection
add, addAll, contains, containsAll, removeAll, removeIf, removeIf, retainAll, toArray, toBooleanArray, toBooleanArrayMethods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanIterable
forEach, forEachMethods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanSet
add, contains, remove, spliteratorMethods inherited from interface java.util.Collection
parallelStream, stream, toArray
-
Method Details
-
iterator
Description copied from interface:BooleanCollectionReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfaceBooleanCollection- Specified by:
iteratorin interfaceBooleanIterable- Specified by:
iteratorin interfaceBooleanSet- Specified by:
iteratorin interfaceCollection<Boolean>- Specified by:
iteratorin interfaceIterable<Boolean>- Specified by:
iteratorin interfaceSet<Boolean>- Specified by:
iteratorin classAbstractBooleanCollection- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-
equals
-
hashCode
public int hashCode()Returns a hash code for this set. The hash code of a set is computed by summing the hash codes of its elements. -
remove
public boolean remove(boolean k) Removes an element from this set. Delegates to the type-specificrem()method implemented by type-specific abstractCollectionsuperclass.- Specified by:
removein interfaceBooleanSet- See Also:
-
rem
Deprecated.Please useremove()instead.Removes a single instance of the specified element from this collection, if it is present (optional operation).Note that this method should be called
remove(), but the clash with the similarly named index-based method in theListinterface forces us to use a distinguished name. For simplicity, the set interfaces reinstatesremove(). Delegates to the type-specificremove()method specified in the type-specificSetinterface.- Specified by:
remin interfaceBooleanCollection- Specified by:
remin interfaceBooleanSet- Overrides:
remin classAbstractBooleanCollection- See Also:
-
remove()instead.