Uses of Interface
org.eclipse.collections.api.block.function.primitive.BooleanFunction
-
Packages that use BooleanFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.collection org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.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.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.ordered org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBaginterface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBaginterface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMapinterface.org.eclipse.collections.impl.block.comparator.primitive This package contains implementations of theSerializableComparatorinterface to compare primitive double, int and long.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction,Predicate,SerializableComparatorandProcedure.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterableinterface.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeListinterface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableListinterface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMapinterface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMapinterface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.immutable org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStackinterface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of BooleanFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type BooleanFunction Modifier and Type Method Description LazyBooleanIterableLazyIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)Returns a lazy BooleanIterable which will transform the underlying iterable data to boolean values based on the booleanFunction.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.default <R extends MutableBooleanCollection>
RRichIterable. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)Same asRichIterable.collectBoolean(BooleanFunction), except that the results are gathered into the specifiedtargetcollection. -
Uses of BooleanFunction in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanBagImmutableBag. collectBoolean(BooleanFunction<? super T> booleanFunction)default MutableBooleanBagMutableBag. collectBoolean(BooleanFunction<? super T> booleanFunction)BooleanBagUnsortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListImmutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListMutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)BooleanListSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanCollectionImmutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)default MutableBooleanCollectionMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)Returns a new primitivebooleaniterable with the results of applying the specified function on each element of the source collection. -
Uses of BooleanFunction in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive with parameters of type BooleanFunction Modifier and Type Method Description <T> ImmutableByteBooleanMapImmutableByteBooleanMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharBooleanMapImmutableCharBooleanMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleBooleanMapImmutableDoubleBooleanMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatBooleanMapImmutableFloatBooleanMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableFloatBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntBooleanMapImmutableIntBooleanMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableLongBooleanMapImmutableLongBooleanMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
ImmutableObjectBooleanMap<K>ImmutableObjectBooleanMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableObjectBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortBooleanMapImmutableShortBooleanMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteBooleanMapMutableByteBooleanMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharBooleanMapMutableCharBooleanMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleBooleanMapMutableDoubleBooleanMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatBooleanMapMutableFloatBooleanMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableFloatBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntBooleanMapMutableIntBooleanMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableLongBooleanMapMutableLongBooleanMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableObjectBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortBooleanMapMutableShortBooleanMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction. -
Uses of BooleanFunction in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListImmutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)BooleanListListIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)default MutableBooleanListMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)MultiReaderList<T>MultiReaderList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>MutableList. sortThisByBoolean(BooleanFunction<? super T> function) -
Uses of BooleanFunction in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanBagImmutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)ImmutableBooleanListImmutableOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagMutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanListMutableOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)BooleanListOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)BooleanBagUnsortedMapIterable. collectBoolean(BooleanFunction<? super V> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanBagImmutablePrimitiveObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagMutablePrimitiveObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)BooleanBagPrimitiveObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<P> booleanMutableByteBooleanMap. getIfAbsentPutWith(byte key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableCharBooleanMap. getIfAbsentPutWith(char key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableDoubleBooleanMap. getIfAbsentPutWith(double key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableFloatBooleanMap. getIfAbsentPutWith(float key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableIntBooleanMap. getIfAbsentPutWith(int key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableLongBooleanMap. getIfAbsentPutWith(long key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableObjectBooleanMap. getIfAbsentPutWith(K key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableShortBooleanMap. getIfAbsentPutWith(short key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.booleanMutableObjectBooleanMap. getIfAbsentPutWithKey(K key, BooleanFunction<? super K> function)Retrieves the value associated with the key if one exists; if it does not, associates the result of invoking the value function with the key. -
Uses of BooleanFunction in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListImmutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanListMutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)BooleanListSortedMapIterable. collectBoolean(BooleanFunction<? super V> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type BooleanFunction Modifier and Type Method Description OrderedBooleanIterableOrderedIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)ReversibleBooleanIterableReversibleIterable. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanSetImmutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction)default MutableBooleanSetMutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction)BooleanSetUnsortedSetIterable. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListImmutableSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListMutableSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)BooleanListSortedSetIterable. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanStackImmutableStack. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanStackMutableStack. collectBoolean(BooleanFunction<? super T> booleanFunction)BooleanStackStackIterable. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type BooleanFunction Modifier and Type Method Description BooleanIterableUnmodifiableRichIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableRichIterable. collectBoolean(BooleanFunction<? super T> booleanFunction, R target) -
Uses of BooleanFunction in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with parameters of type BooleanFunction Modifier and Type Method Description <R extends MutableBooleanCollection>
RAbstractBag. collectBoolean(BooleanFunction<? super T> booleanFunction, R target) -
Uses of BooleanFunction in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanBagAbstractImmutableBag. collectBoolean(BooleanFunction<? super T> booleanFunction)ImmutableBooleanBagImmutableEmptyBag. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type BooleanFunction Modifier and Type Method Description MutableBooleanBagMultiReaderHashBag. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanBagMultiReaderHashBag.UntouchableMutableBag. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanBagSynchronizedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanBagUnmodifiableBag. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListAbstractImmutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type BooleanFunction Modifier and Type Method Description MutableBooleanListAbstractMutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListSynchronizedSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListUnmodifiableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type BooleanFunction Modifier and Type Method Description <R extends MutableBooleanCollection>
RAbstractBiMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target) -
Uses of BooleanFunction in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanBagAbstractImmutableBiMap. collectBoolean(BooleanFunction<? super V> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type BooleanFunction Modifier and Type Method Description MutableBooleanBagAbstractMutableBiMap. collectBoolean(BooleanFunction<? super V> booleanFunction)BooleanIterableUnmodifiableBiMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableBiMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target) -
Uses of BooleanFunction in org.eclipse.collections.impl.block.comparator.primitive
Fields in org.eclipse.collections.impl.block.comparator.primitive declared as BooleanFunction Modifier and Type Field Description private BooleanFunction<T>BooleanFunctionComparator. functionConstructors in org.eclipse.collections.impl.block.comparator.primitive with parameters of type BooleanFunction Constructor Description BooleanFunctionComparator(BooleanFunction<T> function) -
Uses of BooleanFunction in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement BooleanFunction Modifier and Type Class Description static classFunctions.BooleanFunctionChain<T1,T2>private static classPrimitiveFunctions.IntegerIsPositiveprivate static classStringFunctions.ToPrimitiveBooleanFunctionFields in org.eclipse.collections.impl.block.factory declared as BooleanFunction Modifier and Type Field Description private BooleanFunction<? super T>HashingStrategies.BooleanFunctionHashingStrategy. functionprivate BooleanFunction<? super T2>Functions.BooleanFunctionChain. function2private static BooleanFunction<java.lang.String>StringFunctions. TO_PRIMITIVE_BOOLEANMethods in org.eclipse.collections.impl.block.factory that return BooleanFunction Modifier and Type Method Description static BooleanFunction<java.lang.Integer>PrimitiveFunctions. integerIsPositive()static BooleanFunction<java.lang.String>StringFunctions. toPrimitiveBoolean()Methods in org.eclipse.collections.impl.block.factory with parameters of type BooleanFunction Modifier and Type Method Description static <T> SerializableComparator<T>Comparators. byBooleanFunction(BooleanFunction<T> function)static <T1,T2>
Functions.BooleanFunctionChain<T1,T2>Functions. chainBoolean(Function<T1,T2> function1, BooleanFunction<? super T2> function2)Functions.BooleanFunctionChain<T1,T3>Functions.FunctionChain. chainBoolean(BooleanFunction<? super T3> function)static <T> HashingStrategy<T>HashingStrategies. fromBooleanFunction(BooleanFunction<? super T> function)static <T> SerializableComparator<T>Functions. toBooleanComparator(BooleanFunction<T> function)Constructors in org.eclipse.collections.impl.block.factory with parameters of type BooleanFunction Constructor Description BooleanFunctionChain(Function<T1,T2> function1, BooleanFunction<? super T2> function2)BooleanFunctionHashingStrategy(BooleanFunction<? super T> function) -
Uses of BooleanFunction in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as BooleanFunction Modifier and Type Field Description private BooleanFunction<? super T>CollectBooleanProcedure. booleanFunctionConstructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type BooleanFunction Constructor Description CollectBooleanProcedure(BooleanFunction<? super T> booleanFunction, MutableBooleanCollection targetCollection) -
Uses of BooleanFunction in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type BooleanFunction Modifier and Type Method Description BooleanIterableAbstractSynchronizedRichIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)<R extends MutableBooleanCollection>
RAbstractSynchronizedRichIterable. collectBoolean(BooleanFunction<? super T> booleanFunction, R target) -
Uses of BooleanFunction in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type BooleanFunction Modifier and Type Method Description <R extends MutableBooleanCollection>
RAbstractCollectionAdapter. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)<R extends MutableBooleanCollection>
RAbstractMultiReaderMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)<R extends MutableBooleanCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)MutableBooleanCollectionAbstractSynchronizedMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanCollectionAbstractUnmodifiableMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)<R extends MutableBooleanCollection>
RAbstractUnmodifiableMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction, R target) -
Uses of BooleanFunction in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with parameters of type BooleanFunction Modifier and Type Method Description static <T,R extends MutableBooleanCollection>
java.util.stream.Collector<T,?,R>Collectors2. collectBoolean(BooleanFunction<? super T> function, java.util.function.Supplier<R> supplier)Returns a new MutableBooleanCollection with the results of applying the specified BooleanFunction on each element of the source. -
Uses of BooleanFunction in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy with parameters of type BooleanFunction Modifier and Type Method Description LazyBooleanIterableAbstractLazyIterable. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as BooleanFunction Modifier and Type Field Description private BooleanFunction<? super T>CollectBooleanIterable.BooleanFunctionToProcedure. functionprivate BooleanFunction<? super T>CollectBooleanIterable. functionConstructors in org.eclipse.collections.impl.lazy.primitive with parameters of type BooleanFunction Constructor Description BooleanFunctionToProcedure(BooleanFunction<? super T> function)CollectBooleanIterable(LazyIterable<T> adapted, BooleanFunction<? super T> function) -
Uses of BooleanFunction in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type BooleanFunction Modifier and Type Method Description MutableList<T>EmptyList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>SingletonList. sortThisByBoolean(BooleanFunction<? super T> function) -
Uses of BooleanFunction in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListAbstractImmutableList. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type BooleanFunction Modifier and Type Method Description <R extends MutableBooleanCollection>
RFastList. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)MutableBooleanListMultiReaderFastList. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListMultiReaderFastList.UntouchableMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListSynchronizedMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListUnmodifiableMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableList<T>AbstractListAdapter. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>AbstractMutableList. sortThisByBoolean(BooleanFunction<? super T> function)MultiReaderList<T>MultiReaderFastList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>SynchronizedMutableList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>UnmodifiableMutableList. sortThisByBoolean(BooleanFunction<? super T> function) -
Uses of BooleanFunction in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanBagAbstractImmutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanBagImmutableByteObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableByteObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableByteObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableByteObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableByteObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableByteObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableCharObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableCharObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableCharObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableCharObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableCharObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableCharObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableDoubleObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableDoubleObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableDoubleObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableDoubleObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableDoubleObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableDoubleObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableFloatObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableFloatObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableFloatObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableFloatObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableFloatObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableFloatObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableIntObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableIntObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableIntObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableIntObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableIntObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableIntObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableLongObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableLongObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableLongObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableLongObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableLongObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableLongObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableShortObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableShortObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableShortObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableShortObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)ImmutableBooleanBagImmutableShortObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RImmutableShortObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)<T> ImmutableByteBooleanMapImmutableByteBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableCharBooleanMapImmutableCharBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableDoubleBooleanMapImmutableDoubleBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableFloatBooleanMapImmutableFloatBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableIntBooleanMapImmutableIntBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableLongBooleanMapImmutableLongBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T,K>
ImmutableObjectBooleanMap<K>ImmutableObjectBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableShortBooleanMapImmutableShortBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type BooleanFunction Modifier and Type Method Description MutableBooleanBagAbstractMutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagSynchronizedMutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagUnmodifiableMutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableMutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target) -
Uses of BooleanFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type BooleanFunction Modifier and Type Method Description MutableBooleanBagByteObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagCharObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagDoubleObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagFloatObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagIntObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagLongObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagShortObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagSynchronizedByteObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RSynchronizedByteObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagSynchronizedCharObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RSynchronizedCharObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagSynchronizedDoubleObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RSynchronizedDoubleObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagSynchronizedFloatObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RSynchronizedFloatObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagSynchronizedIntObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RSynchronizedIntObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagSynchronizedLongObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RSynchronizedLongObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagSynchronizedShortObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RSynchronizedShortObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagUnmodifiableByteObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableByteObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagUnmodifiableCharObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableCharObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagUnmodifiableDoubleObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableDoubleObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagUnmodifiableFloatObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableFloatObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagUnmodifiableIntObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableIntObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagUnmodifiableLongObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableLongObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)MutableBooleanBagUnmodifiableShortObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableShortObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)<T> MutableByteBooleanMapMutableByteBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableCharBooleanMapMutableCharBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableDoubleBooleanMapMutableDoubleBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableFloatBooleanMapMutableFloatBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableIntBooleanMapMutableIntBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableLongBooleanMapMutableLongBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T,K>
MutableObjectBooleanMap<K>MutableObjectBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableShortBooleanMapMutableShortBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<P> booleanByteBooleanHashMap. getIfAbsentPutWith(byte key, BooleanFunction<? super P> function, P parameter)<P> booleanCharBooleanHashMap. getIfAbsentPutWith(char key, BooleanFunction<? super P> function, P parameter)<P> booleanDoubleBooleanHashMap. getIfAbsentPutWith(double key, BooleanFunction<? super P> function, P parameter)<P> booleanFloatBooleanHashMap. getIfAbsentPutWith(float key, BooleanFunction<? super P> function, P parameter)<P> booleanIntBooleanHashMap. getIfAbsentPutWith(int key, BooleanFunction<? super P> function, P parameter)<P> booleanLongBooleanHashMap. getIfAbsentPutWith(long key, BooleanFunction<? super P> function, P parameter)<P> booleanObjectBooleanHashMap. getIfAbsentPutWith(K key, BooleanFunction<? super P> function, P parameter)<P> booleanObjectBooleanHashMapWithHashingStrategy. getIfAbsentPutWith(K key, BooleanFunction<? super P> function, P parameter)<P> booleanShortBooleanHashMap. getIfAbsentPutWith(short key, BooleanFunction<? super P> function, P parameter)<P> booleanSynchronizedByteBooleanMap. getIfAbsentPutWith(byte key, BooleanFunction<? super P> function, P parameter)<P> booleanSynchronizedCharBooleanMap. getIfAbsentPutWith(char key, BooleanFunction<? super P> function, P parameter)<P> booleanSynchronizedDoubleBooleanMap. getIfAbsentPutWith(double key, BooleanFunction<? super P> function, P parameter)<P> booleanSynchronizedFloatBooleanMap. getIfAbsentPutWith(float key, BooleanFunction<? super P> function, P parameter)<P> booleanSynchronizedIntBooleanMap. getIfAbsentPutWith(int key, BooleanFunction<? super P> function, P parameter)<P> booleanSynchronizedLongBooleanMap. getIfAbsentPutWith(long key, BooleanFunction<? super P> function, P parameter)<P> booleanSynchronizedObjectBooleanMap. getIfAbsentPutWith(K key, BooleanFunction<? super P> function, P parameter)<P> booleanSynchronizedShortBooleanMap. getIfAbsentPutWith(short key, BooleanFunction<? super P> function, P parameter)<P> booleanUnmodifiableByteBooleanMap. getIfAbsentPutWith(byte key, BooleanFunction<? super P> function, P parameter)<P> booleanUnmodifiableCharBooleanMap. getIfAbsentPutWith(char key, BooleanFunction<? super P> function, P parameter)<P> booleanUnmodifiableDoubleBooleanMap. getIfAbsentPutWith(double key, BooleanFunction<? super P> function, P parameter)<P> booleanUnmodifiableFloatBooleanMap. getIfAbsentPutWith(float key, BooleanFunction<? super P> function, P parameter)<P> booleanUnmodifiableIntBooleanMap. getIfAbsentPutWith(int key, BooleanFunction<? super P> function, P parameter)<P> booleanUnmodifiableLongBooleanMap. getIfAbsentPutWith(long key, BooleanFunction<? super P> function, P parameter)<P> booleanUnmodifiableObjectBooleanMap. getIfAbsentPutWith(K key, BooleanFunction<? super P> function, P parameter)<P> booleanUnmodifiableShortBooleanMap. getIfAbsentPutWith(short key, BooleanFunction<? super P> function, P parameter)booleanObjectBooleanHashMap. getIfAbsentPutWithKey(K key, BooleanFunction<? super K> function)booleanObjectBooleanHashMapWithHashingStrategy. getIfAbsentPutWithKey(K key, BooleanFunction<? super K> function)booleanSynchronizedObjectBooleanMap. getIfAbsentPutWithKey(K key, BooleanFunction<? super K> function)booleanUnmodifiableObjectBooleanMap. getIfAbsentPutWithKey(K key, BooleanFunction<? super K> function) -
Uses of BooleanFunction in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListImmutableOrderedMapAdapter. collectBoolean(BooleanFunction<? super V> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type BooleanFunction Modifier and Type Method Description MutableBooleanListOrderedMapAdapter. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanListUnmodifiableMutableOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableMutableOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target) -
Uses of BooleanFunction in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListAbstractImmutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type BooleanFunction Modifier and Type Method Description MutableBooleanListAbstractMutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanListSynchronizedSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanListUnmodifiableTreeMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableTreeMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target) -
Uses of BooleanFunction in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanSetAbstractImmutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type BooleanFunction Modifier and Type Method Description MutableBooleanSetMultiReaderUnifiedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanSetMultiReaderUnifiedSet.UntouchableMutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanSetSynchronizedMutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanSetUnmodifiableMutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListAbstractImmutableSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type BooleanFunction Modifier and Type Method Description MutableBooleanListSortedSetAdapter. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListSynchronizedSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListTreeSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListUnmodifiableSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanStackImmutableArrayStack. collectBoolean(BooleanFunction<? super T> booleanFunction)Deprecated.<R extends MutableBooleanCollection>
RImmutableArrayStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)Deprecated.ImmutableBooleanStackImmutableEmptyStack. collectBoolean(BooleanFunction<? super T> booleanFunction)<R extends MutableBooleanCollection>
RImmutableEmptyStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)ImmutableBooleanStackImmutableNotEmptyStack. collectBoolean(BooleanFunction<? super T> function) -
Uses of BooleanFunction in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type BooleanFunction Modifier and Type Method Description MutableBooleanStackArrayStack. collectBoolean(BooleanFunction<? super T> booleanFunction)<R extends MutableBooleanCollection>
RArrayStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)MutableBooleanStackSynchronizedStack. collectBoolean(BooleanFunction<? super T> booleanFunction)<R extends MutableBooleanCollection>
RSynchronizedStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)MutableBooleanStackUnmodifiableStack. collectBoolean(BooleanFunction<? super T> booleanFunction)<R extends MutableBooleanCollection>
RUnmodifiableStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target) -
Uses of BooleanFunction in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type BooleanFunction Modifier and Type Method Description static <T> MutableBooleanListArrayIterate. collectBoolean(T[] objectArray, BooleanFunction<? super T> booleanFunction)static <T,R extends MutableBooleanCollection>
RArrayIterate. collectBoolean(T[] objectArray, BooleanFunction<? super T> booleanFunction, R target)static <T> MutableBooleanListArrayListIterate. collectBoolean(java.util.ArrayList<T> list, BooleanFunction<? super T> booleanFunction)static <T,R extends MutableBooleanCollection>
RArrayListIterate. collectBoolean(java.util.ArrayList<T> list, BooleanFunction<? super T> booleanFunction, R target)static <T> MutableBooleanCollectionIterate. collectBoolean(java.lang.Iterable<T> iterable, BooleanFunction<? super T> booleanFunction)Returns a new primitivebooleancollection with the results of applying the specified booleanFunction for each element of the iterable.static <T,R extends MutableBooleanCollection>
RIterate. collectBoolean(java.lang.Iterable<T> iterable, BooleanFunction<? super T> booleanFunction, R target)Same asIterate.collectBoolean(Iterable, BooleanFunction), except that the results are gathered into the specifiedtargetcollection.static <T> MutableBooleanListListIterate. collectBoolean(java.util.List<T> list, BooleanFunction<? super T> booleanFunction)static <T,R extends MutableBooleanCollection>
RListIterate. collectBoolean(java.util.List<T> list, BooleanFunction<? super T> booleanFunction, R target)static <K,V>
MutableBooleanCollectionMapIterate. collectBoolean(java.util.Map<K,V> map, BooleanFunction<? super V> booleanFunction)static <K,V,R extends MutableBooleanCollection>
RMapIterate. collectBoolean(java.util.Map<K,V> map, BooleanFunction<? super V> booleanFunction, R target)private static <T,R extends MutableBooleanCollection>
RArrayListIterate. collectBooleanFromInternalArray(java.util.ArrayList<T> source, BooleanFunction<? super T> booleanFunction, int elementsToCollect, R target) -
Uses of BooleanFunction in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type BooleanFunction Modifier and Type Method Description static <R extends MutableBooleanCollection,T>
RInternalArrayIterate. collectBoolean(T[] items, int size, BooleanFunction<? super T> booleanFunction, R target)Adds all array elements to the target MutableBooleanCollection after using the function supplied to convert each source element to the appropriate typestatic <T> MutableBooleanCollectionIterableIterate. collectBoolean(java.lang.Iterable<T> iterable, BooleanFunction<? super T> booleanFunction)static <T,R extends MutableBooleanCollection>
RIterableIterate. collectBoolean(java.lang.Iterable<T> iterable, BooleanFunction<? super T> booleanFunction, R target)static <T> MutableBooleanCollectionIteratorIterate. collectBoolean(java.util.Iterator<T> iterator, BooleanFunction<? super T> booleanFunction)static <T,R extends MutableBooleanCollection>
RIteratorIterate. collectBoolean(java.util.Iterator<T> iterator, BooleanFunction<? super T> booleanFunction, R target)static <T> MutableBooleanListRandomAccessListIterate. collectBoolean(java.util.List<T> list, BooleanFunction<? super T> booleanFunction)static <T,R extends MutableBooleanCollection>
RRandomAccessListIterate. collectBoolean(java.util.List<T> list, BooleanFunction<? super T> booleanFunction, R target)
-