Uses of Interface
org.eclipse.collections.api.BooleanIterable
-
Packages that use BooleanIterable Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.factory.bag.primitive org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.org.eclipse.collections.api.factory.set.primitive This package contains factory API for creating primitive set instances.org.eclipse.collections.api.factory.stack.primitive This package contains factory API for creating primitive stack instances.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API. -
-
Uses of BooleanIterable in org.eclipse.collections.api
Subinterfaces of BooleanIterable in org.eclipse.collections.api Modifier and Type Interface Description interfaceLazyBooleanIterableThis file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return BooleanIterable Modifier and Type Method Description BooleanIterableRichIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)Returns a new primitivebooleaniterable with the results of applying the specified function on each element of the source collection.BooleanIterableBooleanIterable. reject(BooleanPredicate predicate)Returns a new BooleanIterable with all of the elements in the BooleanIterable that return false for the specified predicate.BooleanIterableBooleanIterable. select(BooleanPredicate predicate)Returns a new BooleanIterable with all of the elements in the BooleanIterable that return true for the specified predicate.default BooleanIterableBooleanIterable. tap(BooleanProcedure procedure)Methods in org.eclipse.collections.api that return types with arguments of type BooleanIterable Modifier and Type Method Description default RichIterable<BooleanIterable>BooleanIterable. chunk(int size)Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type BooleanIterable Modifier and Type Method Description default booleanBooleanIterable. containsAll(BooleanIterable source)Returns true if all of the values specified in the source BooleanIterable are contained in the BooleanIterable, and false if they are not.default booleanBooleanIterable. containsAny(BooleanIterable source)Returns true if any of the values specified in the source BooleanIterable are contained in the BooleanIterable, and false if they are not.default booleanBooleanIterable. containsNone(BooleanIterable source)Returns true if none of the values specified in the source BooleanIterable are contained in the BooleanIterable, and false if they are.Method parameters in org.eclipse.collections.api with type arguments of type BooleanIterable Modifier and Type Method Description default <R extends MutableBooleanCollection>
RRichIterable. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)Same as flatCollect, only the results are collected into the target collection. -
Uses of BooleanIterable in org.eclipse.collections.api.bag.primitive
Subinterfaces of BooleanIterable in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interfaceBooleanBagThis file was automatically generated from template file primitiveBag.stg.interfaceImmutableBooleanBagThis file was automatically generated from template file immutablePrimitiveBag.stg.interfaceMutableBooleanBagThis file was automatically generated from template file mutablePrimitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type BooleanIterable Modifier and Type Method Description ImmutableBooleanBagImmutableBooleanBag. newWithAll(BooleanIterable elements)ImmutableBooleanBagImmutableBooleanBag. newWithoutAll(BooleanIterable elements)MutableBooleanBagMutableBooleanBag. withAll(BooleanIterable elements)MutableBooleanBagMutableBooleanBag. withoutAll(BooleanIterable elements) -
Uses of BooleanIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of BooleanIterable in org.eclipse.collections.api.collection.primitive Modifier and Type Interface Description interfaceImmutableBooleanCollectionThis file was automatically generated from template file immutablePrimitiveCollection.stg.interfaceMutableBooleanCollectionThis file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type BooleanIterable Modifier and Type Method Description booleanMutableBooleanCollection. addAll(BooleanIterable source)ImmutableBooleanCollectionImmutableBooleanCollection. newWithAll(BooleanIterable elements)ImmutableBooleanCollectionImmutableBooleanCollection. newWithoutAll(BooleanIterable elements)booleanMutableBooleanCollection. removeAll(BooleanIterable source)booleanMutableBooleanCollection. retainAll(BooleanIterable elements)MutableBooleanCollectionMutableBooleanCollection. withAll(BooleanIterable elements)MutableBooleanCollectionMutableBooleanCollection. withoutAll(BooleanIterable elements) -
Uses of BooleanIterable in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive with parameters of type BooleanIterable Modifier and Type Method Description ImmutableBooleanBagImmutableBooleanBagFactory. ofAll(BooleanIterable items)MutableBooleanBagMutableBooleanBagFactory. ofAll(BooleanIterable items)ImmutableBooleanBagImmutableBooleanBagFactory. withAll(BooleanIterable items)MutableBooleanBagMutableBooleanBagFactory. withAll(BooleanIterable items) -
Uses of BooleanIterable in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive with parameters of type BooleanIterable Modifier and Type Method Description ImmutableBooleanListImmutableBooleanListFactory. ofAll(BooleanIterable items)MutableBooleanListMutableBooleanListFactory. ofAll(BooleanIterable items)ImmutableBooleanListImmutableBooleanListFactory. withAll(BooleanIterable items)MutableBooleanListMutableBooleanListFactory. withAll(BooleanIterable items) -
Uses of BooleanIterable in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive with parameters of type BooleanIterable Modifier and Type Method Description ImmutableBooleanSetImmutableBooleanSetFactory. ofAll(BooleanIterable items)MutableBooleanSetMutableBooleanSetFactory. ofAll(BooleanIterable items)ImmutableBooleanSetImmutableBooleanSetFactory. withAll(BooleanIterable items)MutableBooleanSetMutableBooleanSetFactory. withAll(BooleanIterable items) -
Uses of BooleanIterable in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive with parameters of type BooleanIterable Modifier and Type Method Description ImmutableBooleanStackImmutableBooleanStackFactory. ofAll(BooleanIterable items)MutableBooleanStackMutableBooleanStackFactory. ofAll(BooleanIterable items)ImmutableBooleanStackImmutableBooleanStackFactory. ofAllReversed(BooleanIterable items)MutableBooleanStackMutableBooleanStackFactory. ofAllReversed(BooleanIterable items)ImmutableBooleanStackImmutableBooleanStackFactory. withAll(BooleanIterable items)MutableBooleanStackMutableBooleanStackFactory. withAll(BooleanIterable items)ImmutableBooleanStackImmutableBooleanStackFactory. withAllReversed(BooleanIterable items)MutableBooleanStackMutableBooleanStackFactory. withAllReversed(BooleanIterable items) -
Uses of BooleanIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of BooleanIterable in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interfaceBooleanListThis file was automatically generated from template file primitiveList.stg.interfaceImmutableBooleanListThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceMutableBooleanListThis file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type BooleanIterable Modifier and Type Method Description booleanMutableBooleanList. addAllAtIndex(int index, BooleanIterable source)ImmutableBooleanListImmutableBooleanList. newWithAll(BooleanIterable elements)ImmutableBooleanListImmutableBooleanList. newWithoutAll(BooleanIterable elements)MutableBooleanListMutableBooleanList. withAll(BooleanIterable elements)MutableBooleanListMutableBooleanList. withoutAll(BooleanIterable elements)default ListIterable<BooleanBooleanPair>BooleanList. zipBoolean(BooleanIterable iterable)Returns aListIterableformed from thisBooleanListand anotherBooleanListby combining corresponding elements in pairs.default ImmutableList<BooleanBooleanPair>ImmutableBooleanList. zipBoolean(BooleanIterable iterable)Returns anImmutableListformed from thisImmutableBooleanListand anotherBooleanListby combining corresponding elements in pairs.default MutableList<BooleanBooleanPair>MutableBooleanList. zipBoolean(BooleanIterable iterable)Returns aMutableListformed from thisMutableBooleanListand anotherBooleanListby combining corresponding elements in pairs. -
Uses of BooleanIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of BooleanIterable in org.eclipse.collections.api.map.primitive Modifier and Type Interface Description interfaceBooleanValuesMapThis file was automatically generated from template file primitiveValuesMap.stg.interfaceByteBooleanMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceCharBooleanMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceDoubleBooleanMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceFloatBooleanMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceImmutableByteBooleanMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableCharBooleanMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableDoubleBooleanMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableFloatBooleanMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableIntBooleanMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableLongBooleanMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableObjectBooleanMap<K>This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceImmutableShortBooleanMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceIntBooleanMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceLongBooleanMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceMutableBooleanValuesMapThis file was automatically generated from template file mutablePrimitiveValuesMap.stg.interfaceMutableByteBooleanMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableCharBooleanMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableDoubleBooleanMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableFloatBooleanMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableIntBooleanMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableLongBooleanMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableObjectBooleanMap<K>This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interfaceMutableShortBooleanMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceObjectBooleanMap<K>This file was automatically generated from template file objectPrimitiveMap.stg.interfaceShortBooleanMapThis file was automatically generated from template file primitivePrimitiveMap.stg. -
Uses of BooleanIterable in org.eclipse.collections.api.ordered.primitive
Subinterfaces of BooleanIterable in org.eclipse.collections.api.ordered.primitive Modifier and Type Interface Description interfaceOrderedBooleanIterableThis file was automatically generated from template file orderedPrimitiveIterable.stg.interfaceReversibleBooleanIterableThis file was automatically generated from template file reversiblePrimitiveIterable.stg. -
Uses of BooleanIterable in org.eclipse.collections.api.set.primitive
Subinterfaces of BooleanIterable in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interfaceBooleanSetThis file was automatically generated from template file primitiveSet.stg.interfaceImmutableBooleanSetThis file was automatically generated from template file immutablePrimitiveSet.stg.interfaceMutableBooleanSetThis file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type BooleanIterable Modifier and Type Method Description ImmutableBooleanSetImmutableBooleanSet. newWithAll(BooleanIterable elements)ImmutableBooleanSetImmutableBooleanSet. newWithoutAll(BooleanIterable elements)MutableBooleanSetMutableBooleanSet. withAll(BooleanIterable elements)MutableBooleanSetMutableBooleanSet. withoutAll(BooleanIterable elements) -
Uses of BooleanIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of BooleanIterable in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interfaceBooleanStackThis file was automatically generated from template file primitiveStack.stg.interfaceImmutableBooleanStackThis file was automatically generated from template file immutablePrimitiveStack.stg.interfaceMutableBooleanStackThis file was automatically generated from template file mutablePrimitiveStack.stg.
-