Package it.unimi.dsi.fastutil.booleans

Provides type-specific classes for boolean elements or keys.

See:
          Description

Interface Summary
BooleanBidirectionalIterator A type-specific bidirectional iterator; provides an additional method to reduce type juggling, and the possibility to skip elements backwards.
BooleanCollection A type-specific Collection; provides some additional methods that use polymorphism to reduce type juggling.
BooleanIterator A type-specific Iterator; provides an additional method to reduce type juggling, and the possibility to skip elements.
BooleanList A type-specific List; provides some additional methods that use polymorphism to reduce type juggling.
BooleanListIterator A type-specific bidirectional iterator that is also a ListIterator.
BooleanSet A type-specific Set; provides some additional methods that use polymorphism to reduce type juggling.
 

Class Summary
AbstractBooleanBidirectionalIterator An abstract class facilitating the creation of type-specific bidirectional iterators.
AbstractBooleanCollection An abstract class providing basic methods for collections implementing a type-specific interface.
AbstractBooleanIterator An abstract class facilitating the creation of type-specific iterators.
AbstractBooleanList An abstract class providing basic methods for lists implementing a type-specific list interface.
AbstractBooleanListIterator An abstract class facilitating the creation of type-specific list iterators.
AbstractBooleanSet An abstract class providing basic methods for sets implementing a type-specific interface.
BooleanArrayList A type-specific ArrayList; provides some additional methods that use polymorphism to reduce type juggling.
BooleanOpenHashSet A type-specific hash set with with a fast, small-footprint implementation.
 

Package it.unimi.dsi.fastutil.booleans Description

Provides type-specific classes for boolean elements or keys.

Not all classes are provided in a boolean-specific version: sorted sets and maps not generated (as they are completely useless). Unsorted sets and maps are kept for orthogonality, whereas BooleanCollection is used by maps with boolean values.