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 ofMap
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.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 theImmutableBag
interface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.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 theMutableBiMap
interface.org.eclipse.collections.impl.block.comparator.primitive This package contains implementations of theSerializableComparator
interface to compare primitive double, int and long.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.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 theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
interface.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 theFixedSizeList
interface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.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 theMutableMap
interface.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.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.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 theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.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 LazyBooleanIterable
LazyIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)
Returns a lazy BooleanIterable which will transform the underlying iterable data to boolean values based on the booleanFunction.BooleanIterable
RichIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)
Returns a new primitiveboolean
iterable 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 specifiedtarget
collection. -
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 ImmutableBooleanBag
ImmutableBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
default MutableBooleanBag
MutableBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
BooleanBag
UnsortedBag. 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 ImmutableBooleanList
ImmutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
MutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
BooleanList
SortedBag. 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 ImmutableBooleanCollection
ImmutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)
default MutableBooleanCollection
MutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)
Returns a new primitiveboolean
iterable 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> ImmutableByteBooleanMap
ImmutableByteBooleanMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharBooleanMap
ImmutableCharBooleanMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableDoubleBooleanMap
ImmutableDoubleBooleanMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableDoubleBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntBooleanMap
ImmutableIntBooleanMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableIntBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableLongBooleanMap
ImmutableLongBooleanMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableLongBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,K>
ImmutableObjectBooleanMap<K>ImmutableObjectBooleanMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableObjectBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortBooleanMap
ImmutableShortBooleanMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableShortBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteBooleanMap
MutableByteBooleanMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharBooleanMap
MutableCharBooleanMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableDoubleBooleanMap
MutableDoubleBooleanMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableDoubleBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatBooleanMap
MutableFloatBooleanMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntBooleanMap
MutableIntBooleanMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableIntBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableLongBooleanMap
MutableLongBooleanMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableLongBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,K>
MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableObjectBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortBooleanMap
MutableShortBooleanMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableShortBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
. -
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 ImmutableBooleanList
ImmutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)
BooleanList
ListIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)
default MutableBooleanList
MutableList. 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 ImmutableBooleanBag
ImmutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
ImmutableBooleanList
ImmutableOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanBag
MutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanList
MutableOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
BooleanList
OrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
BooleanBag
UnsortedMapIterable. 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 ImmutableBooleanBag
ImmutablePrimitiveObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanBag
MutablePrimitiveObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
BooleanBag
PrimitiveObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<P> boolean
MutableByteBooleanMap. 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> boolean
MutableCharBooleanMap. 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> boolean
MutableDoubleBooleanMap. 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> boolean
MutableFloatBooleanMap. 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> boolean
MutableIntBooleanMap. 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> boolean
MutableLongBooleanMap. 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> boolean
MutableObjectBooleanMap. 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> boolean
MutableShortBooleanMap. 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.boolean
MutableObjectBooleanMap. 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 ImmutableBooleanList
ImmutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanList
MutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
BooleanList
SortedMapIterable. 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 OrderedBooleanIterable
OrderedIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)
ReversibleBooleanIterable
ReversibleIterable. 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 ImmutableBooleanSet
ImmutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
default MutableBooleanSet
MutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
BooleanSet
UnsortedSetIterable. 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 ImmutableBooleanList
ImmutableSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
MutableSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
BooleanList
SortedSetIterable. 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 ImmutableBooleanStack
ImmutableStack. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanStack
MutableStack. collectBoolean(BooleanFunction<? super T> booleanFunction)
BooleanStack
StackIterable. 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 BooleanIterable
UnmodifiableRichIterable. 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 ImmutableBooleanBag
AbstractImmutableBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
ImmutableBooleanBag
ImmutableEmptyBag. 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 MutableBooleanBag
MultiReaderHashBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanBag
MultiReaderHashBag.UntouchableMutableBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanBag
SynchronizedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanBag
UnmodifiableBag. 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 ImmutableBooleanList
AbstractImmutableSortedBag. 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 MutableBooleanList
AbstractMutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
SynchronizedSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
UnmodifiableSortedBag. 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 ImmutableBooleanBag
AbstractImmutableBiMap. 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 MutableBooleanBag
AbstractMutableBiMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
BooleanIterable
UnmodifiableBiMap. 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. function
Constructors 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 class
Functions.BooleanFunctionChain<T1,T2>
private static class
PrimitiveFunctions.IntegerIsPositive
private static class
StringFunctions.ToPrimitiveBooleanFunction
Fields in org.eclipse.collections.impl.block.factory declared as BooleanFunction Modifier and Type Field Description private BooleanFunction<? super T>
HashingStrategies.BooleanFunctionHashingStrategy. function
private BooleanFunction<? super T2>
Functions.BooleanFunctionChain. function2
private static BooleanFunction<java.lang.String>
StringFunctions. TO_PRIMITIVE_BOOLEAN
Methods 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. booleanFunction
Constructors 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 BooleanIterable
AbstractSynchronizedRichIterable. 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)
MutableBooleanCollection
AbstractSynchronizedMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanCollection
AbstractUnmodifiableMutableCollection. 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 LazyBooleanIterable
AbstractLazyIterable. 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. function
private BooleanFunction<? super T>
CollectBooleanIterable. function
Constructors 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 ImmutableBooleanList
AbstractImmutableList. 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)
MutableBooleanList
MultiReaderFastList. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
MultiReaderFastList.UntouchableMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
SynchronizedMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
UnmodifiableMutableList. 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 ImmutableBooleanBag
AbstractImmutableMap. 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 ImmutableBooleanBag
ImmutableByteObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableByteObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableByteObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableByteObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableByteObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableByteObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableCharObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableCharObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableCharObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableCharObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableCharObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableCharObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableDoubleObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableDoubleObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableDoubleObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableDoubleObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableDoubleObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableDoubleObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableFloatObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableFloatObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableFloatObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableFloatObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableFloatObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableFloatObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableIntObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableIntObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableIntObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableIntObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableIntObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableIntObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableLongObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableLongObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableLongObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableLongObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableLongObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableLongObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableShortObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableShortObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableShortObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableShortObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
ImmutableBooleanBag
ImmutableShortObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableShortObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<T> ImmutableByteBooleanMap
ImmutableByteBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> ImmutableCharBooleanMap
ImmutableCharBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> ImmutableDoubleBooleanMap
ImmutableDoubleBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> ImmutableIntBooleanMap
ImmutableIntBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> ImmutableLongBooleanMap
ImmutableLongBooleanMapFactoryImpl. 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> ImmutableShortBooleanMap
ImmutableShortBooleanMapFactoryImpl. 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 MutableBooleanBag
AbstractMutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanBag
SynchronizedMutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanBag
UnmodifiableMutableMap. 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 MutableBooleanBag
ByteObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanBag
CharObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanBag
DoubleObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanBag
FloatObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanBag
IntObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanBag
LongObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanBag
ShortObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanBag
SynchronizedByteObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RSynchronizedByteObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
SynchronizedCharObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RSynchronizedCharObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
SynchronizedDoubleObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RSynchronizedDoubleObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
SynchronizedFloatObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RSynchronizedFloatObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
SynchronizedIntObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RSynchronizedIntObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
SynchronizedLongObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RSynchronizedLongObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
SynchronizedShortObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RSynchronizedShortObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
UnmodifiableByteObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RUnmodifiableByteObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
UnmodifiableCharObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RUnmodifiableCharObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
UnmodifiableDoubleObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RUnmodifiableDoubleObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
UnmodifiableFloatObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RUnmodifiableFloatObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
UnmodifiableIntObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RUnmodifiableIntObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
UnmodifiableLongObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RUnmodifiableLongObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
MutableBooleanBag
UnmodifiableShortObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
<R extends MutableBooleanCollection>
RUnmodifiableShortObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<T> MutableByteBooleanMap
MutableByteBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> MutableCharBooleanMap
MutableCharBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> MutableDoubleBooleanMap
MutableDoubleBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> MutableFloatBooleanMap
MutableFloatBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> MutableIntBooleanMap
MutableIntBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> MutableLongBooleanMap
MutableLongBooleanMapFactoryImpl. 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> MutableShortBooleanMap
MutableShortBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<P> boolean
ByteBooleanHashMap. getIfAbsentPutWith(byte key, BooleanFunction<? super P> function, P parameter)
<P> boolean
CharBooleanHashMap. getIfAbsentPutWith(char key, BooleanFunction<? super P> function, P parameter)
<P> boolean
DoubleBooleanHashMap. getIfAbsentPutWith(double key, BooleanFunction<? super P> function, P parameter)
<P> boolean
FloatBooleanHashMap. getIfAbsentPutWith(float key, BooleanFunction<? super P> function, P parameter)
<P> boolean
IntBooleanHashMap. getIfAbsentPutWith(int key, BooleanFunction<? super P> function, P parameter)
<P> boolean
LongBooleanHashMap. getIfAbsentPutWith(long key, BooleanFunction<? super P> function, P parameter)
<P> boolean
ObjectBooleanHashMap. getIfAbsentPutWith(K key, BooleanFunction<? super P> function, P parameter)
<P> boolean
ObjectBooleanHashMapWithHashingStrategy. getIfAbsentPutWith(K key, BooleanFunction<? super P> function, P parameter)
<P> boolean
ShortBooleanHashMap. getIfAbsentPutWith(short key, BooleanFunction<? super P> function, P parameter)
<P> boolean
SynchronizedByteBooleanMap. getIfAbsentPutWith(byte key, BooleanFunction<? super P> function, P parameter)
<P> boolean
SynchronizedCharBooleanMap. getIfAbsentPutWith(char key, BooleanFunction<? super P> function, P parameter)
<P> boolean
SynchronizedDoubleBooleanMap. getIfAbsentPutWith(double key, BooleanFunction<? super P> function, P parameter)
<P> boolean
SynchronizedFloatBooleanMap. getIfAbsentPutWith(float key, BooleanFunction<? super P> function, P parameter)
<P> boolean
SynchronizedIntBooleanMap. getIfAbsentPutWith(int key, BooleanFunction<? super P> function, P parameter)
<P> boolean
SynchronizedLongBooleanMap. getIfAbsentPutWith(long key, BooleanFunction<? super P> function, P parameter)
<P> boolean
SynchronizedObjectBooleanMap. getIfAbsentPutWith(K key, BooleanFunction<? super P> function, P parameter)
<P> boolean
SynchronizedShortBooleanMap. getIfAbsentPutWith(short key, BooleanFunction<? super P> function, P parameter)
<P> boolean
UnmodifiableByteBooleanMap. getIfAbsentPutWith(byte key, BooleanFunction<? super P> function, P parameter)
<P> boolean
UnmodifiableCharBooleanMap. getIfAbsentPutWith(char key, BooleanFunction<? super P> function, P parameter)
<P> boolean
UnmodifiableDoubleBooleanMap. getIfAbsentPutWith(double key, BooleanFunction<? super P> function, P parameter)
<P> boolean
UnmodifiableFloatBooleanMap. getIfAbsentPutWith(float key, BooleanFunction<? super P> function, P parameter)
<P> boolean
UnmodifiableIntBooleanMap. getIfAbsentPutWith(int key, BooleanFunction<? super P> function, P parameter)
<P> boolean
UnmodifiableLongBooleanMap. getIfAbsentPutWith(long key, BooleanFunction<? super P> function, P parameter)
<P> boolean
UnmodifiableObjectBooleanMap. getIfAbsentPutWith(K key, BooleanFunction<? super P> function, P parameter)
<P> boolean
UnmodifiableShortBooleanMap. getIfAbsentPutWith(short key, BooleanFunction<? super P> function, P parameter)
boolean
ObjectBooleanHashMap. getIfAbsentPutWithKey(K key, BooleanFunction<? super K> function)
boolean
ObjectBooleanHashMapWithHashingStrategy. getIfAbsentPutWithKey(K key, BooleanFunction<? super K> function)
boolean
SynchronizedObjectBooleanMap. getIfAbsentPutWithKey(K key, BooleanFunction<? super K> function)
boolean
UnmodifiableObjectBooleanMap. getIfAbsentPutWithKey(K key, BooleanFunction<? super K> function)
-
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 MutableBooleanList
OrderedMapAdapter. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanList
UnmodifiableMutableOrderedMap. 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 ImmutableBooleanList
AbstractImmutableSortedMap. 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 MutableBooleanList
AbstractMutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanList
SynchronizedSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)
MutableBooleanList
UnmodifiableTreeMap. 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 ImmutableBooleanSet
AbstractImmutableSet. 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 MutableBooleanSet
MultiReaderUnifiedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanSet
MultiReaderUnifiedSet.UntouchableMutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanSet
SynchronizedMutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanSet
UnmodifiableMutableSet. 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 ImmutableBooleanList
AbstractImmutableSortedSet. 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 MutableBooleanList
SortedSetAdapter. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
SynchronizedSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
TreeSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanList
UnmodifiableSortedSet. 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 ImmutableBooleanStack
ImmutableArrayStack. collectBoolean(BooleanFunction<? super T> booleanFunction)
Deprecated.<R extends MutableBooleanCollection>
RImmutableArrayStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
Deprecated.ImmutableBooleanStack
ImmutableEmptyStack. collectBoolean(BooleanFunction<? super T> booleanFunction)
<R extends MutableBooleanCollection>
RImmutableEmptyStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
ImmutableBooleanStack
ImmutableNotEmptyStack. 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 MutableBooleanStack
ArrayStack. collectBoolean(BooleanFunction<? super T> booleanFunction)
<R extends MutableBooleanCollection>
RArrayStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
MutableBooleanStack
SynchronizedStack. collectBoolean(BooleanFunction<? super T> booleanFunction)
<R extends MutableBooleanCollection>
RSynchronizedStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
MutableBooleanStack
UnmodifiableStack. 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> MutableBooleanList
ArrayIterate. collectBoolean(T[] objectArray, BooleanFunction<? super T> booleanFunction)
static <T,R extends MutableBooleanCollection>
RArrayIterate. collectBoolean(T[] objectArray, BooleanFunction<? super T> booleanFunction, R target)
static <T> MutableBooleanList
ArrayListIterate. 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> MutableBooleanCollection
Iterate. collectBoolean(java.lang.Iterable<T> iterable, BooleanFunction<? super T> booleanFunction)
Returns a new primitiveboolean
collection 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 specifiedtarget
collection.static <T> MutableBooleanList
ListIterate. 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 <T> MutableBooleanCollection
IterableIterate. 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> MutableBooleanCollection
IteratorIterate. 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> MutableBooleanList
RandomAccessListIterate. 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)
-