Uses of Interface
org.eclipse.collections.api.ordered.primitive.ReversibleBooleanIterable
-
Packages that use ReversibleBooleanIterable Package Description org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.ordered org.eclipse.collections.api.ordered.primitive org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces. -
-
Uses of ReversibleBooleanIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of ReversibleBooleanIterable in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
BooleanList
This file was automatically generated from template file primitiveList.stg.interface
ImmutableBooleanList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
MutableBooleanList
This file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of ReversibleBooleanIterable in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered that return ReversibleBooleanIterable Modifier and Type Method Description ReversibleBooleanIterable
ReversibleIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of ReversibleBooleanIterable in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive that return ReversibleBooleanIterable Modifier and Type Method Description ReversibleBooleanIterable
ReversibleBooleanIterable. distinct()
ReversibleBooleanIterable
ReversibleBooleanIterable. reject(BooleanPredicate predicate)
default ReversibleBooleanIterable
ReversibleBooleanIterable. rejectWithIndex(BooleanIntPredicate predicate)
Returns a new ReversibleBooleanIterable excluding all elements with corresponding indexes matching the specified predicate.ReversibleBooleanIterable
ReversibleBooleanIterable. select(BooleanPredicate predicate)
default ReversibleBooleanIterable
ReversibleBooleanIterable. selectWithIndex(BooleanIntPredicate predicate)
Returns a new ReversibleBooleanIterable including all elements with corresponding indexes matching the specified predicate.ReversibleBooleanIterable
ReversibleBooleanIterable. toReversed()
-
Uses of ReversibleBooleanIterable in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ReversibleBooleanIterable Modifier and Type Class Description (package private) class
ImmutableBooleanArrayList
ImmutableBooleanArrayList is the non-modifiable equivalent ofBooleanArrayList
.(package private) class
ImmutableBooleanEmptyList
ImmutableBooleanEmptyList is an optimization forImmutableBooleanList
of size 0.(package private) class
ImmutableBooleanSingletonList
ImmutableBooleanSingletonList is an optimization forImmutableBooleanList
of size 1. -
Uses of ReversibleBooleanIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement ReversibleBooleanIterable Modifier and Type Class Description class
BooleanArrayList
BooleanArrayList is similar toFastList
, and is memory-optimized for boolean primitives.class
SynchronizedBooleanList
A synchronized view of aMutableBooleanList
.class
UnmodifiableBooleanList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.
-