Uses of Interface
org.eclipse.collections.api.list.primitive.BooleanList
-
Packages that use BooleanList Package Description org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.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.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive -
-
Uses of BooleanList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return BooleanList Modifier and Type Method Description BooleanList
SortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of BooleanList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return BooleanList Modifier and Type Method Description BooleanList
ListIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of BooleanList in org.eclipse.collections.api.list.primitive
Subinterfaces of BooleanList in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
ImmutableBooleanList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
MutableBooleanList
This file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive that return BooleanList Modifier and Type Method Description BooleanList
BooleanList. distinct()
BooleanList
BooleanList. reject(BooleanPredicate predicate)
default BooleanList
BooleanList. rejectWithIndex(BooleanIntPredicate predicate)
Returns a new BooleanList excluding all elements with corresponding indexes matching the specified predicate.BooleanList
BooleanList. select(BooleanPredicate predicate)
default BooleanList
BooleanList. selectWithIndex(BooleanIntPredicate predicate)
Returns a new BooleanList including all elements with corresponding indexes matching the specified predicate.BooleanList
BooleanList. subList(int fromIndex, int toIndex)
default BooleanList
BooleanList. tap(BooleanProcedure procedure)
BooleanList
BooleanList. toReversed()
Methods in org.eclipse.collections.api.list.primitive with parameters of type BooleanList Modifier and Type Method Description default void
BooleanList. forEachInBoth(BooleanList other, BooleanBooleanProcedure procedure)
This method iterates over two CharList instances of the same size together using the specified CharCharProcedure. -
Uses of BooleanList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return BooleanList Modifier and Type Method Description BooleanList
OrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
-
Uses of BooleanList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return BooleanList Modifier and Type Method Description BooleanList
SortedMapIterable. collectBoolean(BooleanFunction<? super V> booleanFunction)
-
Uses of BooleanList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return BooleanList Modifier and Type Method Description BooleanList
SortedSetIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of BooleanList in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return BooleanList Modifier and Type Method Description BooleanList
BooleanStack. peek(int count)
Returns BooleanList of the number of elements specified by the count, beginning with the top of the stack.BooleanList
MutableBooleanStack. pop(int count)
Removes and returns a BooleanList of the number of elements specified by the count, beginning with the top of the stack. -
Uses of BooleanList in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as BooleanList Modifier and Type Field Description private BooleanList
ReverseBooleanIterable. adapted
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type BooleanList Modifier and Type Method Description static ReverseBooleanIterable
ReverseBooleanIterable. adapt(BooleanList booleanList)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type BooleanList Constructor Description ReverseBooleanIterable(BooleanList newAdapted)
-
Uses of BooleanList in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement BooleanList 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 BooleanList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement BooleanList 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.Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type BooleanList Modifier and Type Method Description void
SynchronizedBooleanList. forEachInBoth(BooleanList other, BooleanBooleanProcedure procedure)
-
Uses of BooleanList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return BooleanList Modifier and Type Method Description BooleanList
ImmutableBooleanEmptyStack. peek(int count)
BooleanList
ImmutableBooleanSingletonStack. peek(int count)
-
Uses of BooleanList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return BooleanList Modifier and Type Method Description BooleanList
SynchronizedBooleanStack. peek(int count)
BooleanList
UnmodifiableBooleanStack. peek(int count)
BooleanList
BooleanArrayStack. pop(int count)
BooleanList
SynchronizedBooleanStack. pop(int count)
BooleanList
UnmodifiableBooleanStack. pop(int count)
-
Uses of BooleanList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return BooleanList Modifier and Type Method Description BooleanList
AbstractBooleanStack. peek(int count)
-