Uses of Interface
org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction
-
Packages that use BooleanToObjectFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API. -
-
Uses of BooleanToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> RichIterable<V>BooleanIterable. collect(BooleanToObjectFunction<? extends V> function)Returns a new collection with the results of applying the specified function on each element of the source collection.default <V,R extends Collection<V>>
RBooleanIterable. collect(BooleanToObjectFunction<? extends V> function, R target)Same asBooleanIterable.collect(BooleanToObjectFunction), only the results are added to the target Collection.<V> LazyIterable<V>LazyBooleanIterable. collect(BooleanToObjectFunction<? extends V> function)default <V,R extends Collection<V>>
RBooleanIterable. flatCollect(BooleanToObjectFunction<? extends Iterable<V>> function, R target)flatCollectis a special case ofBooleanIterable.collect(BooleanToObjectFunction).<V> LazyIterable<V>LazyBooleanIterable. flatCollect(BooleanToObjectFunction<? extends Iterable<V>> function) -
Uses of BooleanToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> Bag<V>BooleanBag. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableBooleanBag. collect(BooleanToObjectFunction<? extends V> function)<V> MutableBag<V>MutableBooleanBag. collect(BooleanToObjectFunction<? extends V> function) -
Uses of BooleanToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> ImmutableCollection<V>ImmutableBooleanCollection. collect(BooleanToObjectFunction<? extends V> function)<V> MutableCollection<V>MutableBooleanCollection. collect(BooleanToObjectFunction<? extends V> function) -
Uses of BooleanToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> ListIterable<V>BooleanList. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableList<V>ImmutableBooleanList. collect(BooleanToObjectFunction<? extends V> function)<V> MutableList<V>MutableBooleanList. collect(BooleanToObjectFunction<? extends V> function) -
Uses of BooleanToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> Bag<V>BooleanValuesMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableObjectBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> MutableBag<V>MutableBooleanValuesMap. collect(BooleanToObjectFunction<? extends V> function)<V> MutableCollection<V>MutableObjectBooleanMap. collect(BooleanToObjectFunction<? extends V> function) -
Uses of BooleanToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> OrderedIterable<V>OrderedBooleanIterable. collect(BooleanToObjectFunction<? extends V> function)<V> ReversibleIterable<V>ReversibleBooleanIterable. collect(BooleanToObjectFunction<? extends V> function) -
Uses of BooleanToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> SetIterable<V>BooleanSet. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableSet<V>ImmutableBooleanSet. collect(BooleanToObjectFunction<? extends V> function)<V> MutableSet<V>MutableBooleanSet. collect(BooleanToObjectFunction<? extends V> function) -
Uses of BooleanToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type BooleanToObjectFunction Modifier and Type Method Description <V> StackIterable<V>BooleanStack. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableStack<V>ImmutableBooleanStack. collect(BooleanToObjectFunction<? extends V> function)<V> MutableStack<V>MutableBooleanStack. collect(BooleanToObjectFunction<? extends V> function)
-