Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableFloatCollection
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 | |
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.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
org.eclipse.collections.impl |
This package contains implementations for Eclipse Collections API.
|
org.eclipse.collections.impl.bag | |
org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
org.eclipse.collections.impl.bimap | |
org.eclipse.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
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 the
MutableCollection interface. |
org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
org.eclipse.collections.impl.collector | |
org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
org.eclipse.collections.impl.map.mutable |
This package contains implementations of the
MutableMap 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.mutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack 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.
|
org.eclipse.collections.impl.utility.internal.primitive |
-
Uses of MutableFloatCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableFloatCollection Modifier and Type Method Description default <R extends MutableFloatCollection>
RBooleanIterable. collectFloat(BooleanToFloatFunction function, R target)
Returns the targetMutableFloatCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableFloatCollection>
RByteIterable. collectFloat(ByteToFloatFunction function, R target)
Returns the targetMutableFloatCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableFloatCollection>
RCharIterable. collectFloat(CharToFloatFunction function, R target)
Returns the targetMutableFloatCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableFloatCollection>
RDoubleIterable. collectFloat(DoubleToFloatFunction function, R target)
Returns the targetMutableFloatCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableFloatCollection>
RFloatIterable. collectFloat(FloatToFloatFunction function, R target)
Returns the targetMutableFloatCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableFloatCollection>
RIntIterable. collectFloat(IntToFloatFunction function, R target)
Returns the targetMutableFloatCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableFloatCollection>
RLongIterable. collectFloat(LongToFloatFunction function, R target)
Returns the targetMutableFloatCollection
with the results of applying the specified function on each element of the source collection.<R extends MutableFloatCollection>
RRichIterable. collectFloat(FloatFunction<? super T> floatFunction, R target)
Same asRichIterable.collectFloat(FloatFunction)
, except that the results are gathered into the specifiedtarget
collection.default <R extends MutableFloatCollection>
RShortIterable. collectFloat(ShortToFloatFunction function, R target)
Returns the targetMutableFloatCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableFloatCollection>
RRichIterable. flatCollectFloat(Function<? super T,? extends FloatIterable> function, R target)
Same as flatCollect, only the results are collected into the target collection.default <R extends MutableFloatCollection>
RFloatIterable. reject(FloatPredicate predicate, R target)
Same asFloatIterable.reject(FloatPredicate)
, only the results are added to the target MutableFloatCollection.default <R extends MutableFloatCollection>
RFloatIterable. select(FloatPredicate predicate, R target)
Same asFloatIterable.select(FloatPredicate)
, only the results are added to the target MutableFloatCollection. -
Uses of MutableFloatCollection in org.eclipse.collections.api.bag.primitive
Subinterfaces of MutableFloatCollection in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interface
MutableFloatBag
This file was automatically generated from template file mutablePrimitiveBag.stg. -
Uses of MutableFloatCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableFloatCollection Modifier and Type Method Description MutableFloatCollection
MutableCollection. collectFloat(FloatFunction<? super T> floatFunction)
Returns a new primitivefloat
iterable with the results of applying the specified function on each element of the source collection. -
Uses of MutableFloatCollection in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive that return MutableFloatCollection Modifier and Type Method Description MutableFloatCollection
MutableFloatCollection. asSynchronized()
MutableFloatCollection
MutableFloatCollection. asUnmodifiable()
default MutableFloatCollection
MutableFloatCollection. newEmpty()
Creates a new empty mutable version of the same collection type.MutableFloatCollection
MutableFloatCollection. reject(FloatPredicate predicate)
MutableFloatCollection
MutableFloatCollection. select(FloatPredicate predicate)
default MutableFloatCollection
MutableFloatCollection. tap(FloatProcedure procedure)
MutableFloatCollection
MutableFloatCollection. with(float element)
MutableFloatCollection
MutableFloatCollection. withAll(FloatIterable elements)
MutableFloatCollection
MutableFloatCollection. without(float element)
MutableFloatCollection
MutableFloatCollection. withoutAll(FloatIterable elements)
-
Uses of MutableFloatCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableFloatCollection in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
MutableFloatList
This file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of MutableFloatCollection in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableFloatCollection Modifier and Type Method Description MutableFloatCollection
MutableObjectFloatMap. reject(FloatPredicate predicate)
MutableFloatCollection
MutableObjectFloatMap. select(FloatPredicate predicate)
MutableFloatCollection
FloatValuesMap. values()
Returns the values in this map as a separate collection.MutableFloatCollection
ObjectFloatMap. values()
Returns the values in this map as a separate collection. -
Uses of MutableFloatCollection in org.eclipse.collections.api.set.primitive
Subinterfaces of MutableFloatCollection in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interface
MutableFloatSet
This file was automatically generated from template file mutablePrimitiveSet.stg. -
Uses of MutableFloatCollection in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RAbstractRichIterable. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableRichIterable. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableRichIterable. flatCollectFloat(Function<? super T,? extends FloatIterable> function, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RAbstractBag. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RAbstractBag. flatCollectFloat(Function<? super T,? extends FloatIterable> function, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableFloatCollection Modifier and Type Class Description class
FloatHashBag
FloatHashBag is similar toHashBag
, and is memory-optimized for float primitives.class
SynchronizedFloatBag
A synchronized view of aMutableFloatBag
.class
UnmodifiableFloatBag
This file was automatically generated from template file unmodifiablePrimitiveBag.stg. -
Uses of MutableFloatCollection in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RAbstractBiMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RAbstractBiMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RUnmodifiableBiMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableBiMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.block.procedure.primitive
Methods in org.eclipse.collections.impl.block.procedure.primitive that return MutableFloatCollection Modifier and Type Method Description MutableFloatCollection
CollectFloatProcedure. getFloatCollection()
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type MutableFloatCollection Constructor Description CollectFloatProcedure(FloatFunction<? super T> floatFunction, MutableFloatCollection targetCollection)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RAbstractSynchronizedRichIterable. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RAbstractSynchronizedRichIterable. flatCollectFloat(Function<? super T,? extends FloatIterable> function, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RAbstractCollectionAdapter. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RAbstractMultiReaderMutableCollection. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RAbstractUnmodifiableMutableCollection. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RAbstractMultiReaderMutableCollection. flatCollectFloat(Function<? super T,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RAbstractUnmodifiableMutableCollection. flatCollectFloat(Function<? super T,? extends FloatIterable> function, R target)
Methods in org.eclipse.collections.impl.collection.mutable that return MutableFloatCollection Modifier and Type Method Description MutableFloatCollection
AbstractCollectionAdapter. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatCollection
AbstractSynchronizedMutableCollection. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatCollection
AbstractUnmodifiableMutableCollection. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement MutableFloatCollection Modifier and Type Class Description class
AbstractSynchronizedFloatCollection
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
AbstractUnmodifiableFloatCollection
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
SynchronizedFloatCollection
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
UnmodifiableFloatCollection
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableFloatCollection Modifier and Type Method Description MutableFloatCollection
AbstractSynchronizedFloatCollection. asSynchronized()
MutableFloatCollection
AbstractUnmodifiableFloatCollection. asSynchronized()
MutableFloatCollection
AbstractSynchronizedFloatCollection. asUnmodifiable()
MutableFloatCollection
AbstractUnmodifiableFloatCollection. asUnmodifiable()
MutableFloatCollection
SynchronizedFloatCollection. newEmpty()
MutableFloatCollection
UnmodifiableFloatCollection. newEmpty()
MutableFloatCollection
AbstractSynchronizedFloatCollection. reject(FloatPredicate predicate)
MutableFloatCollection
AbstractUnmodifiableFloatCollection. reject(FloatPredicate predicate)
MutableFloatCollection
AbstractSynchronizedFloatCollection. select(FloatPredicate predicate)
MutableFloatCollection
AbstractUnmodifiableFloatCollection. select(FloatPredicate predicate)
MutableFloatCollection
AbstractSynchronizedFloatCollection. with(float element)
MutableFloatCollection
AbstractUnmodifiableFloatCollection. with(float element)
MutableFloatCollection
AbstractSynchronizedFloatCollection. withAll(FloatIterable elements)
MutableFloatCollection
AbstractUnmodifiableFloatCollection. withAll(FloatIterable elements)
MutableFloatCollection
AbstractSynchronizedFloatCollection. without(float element)
MutableFloatCollection
AbstractUnmodifiableFloatCollection. without(float element)
MutableFloatCollection
AbstractSynchronizedFloatCollection. withoutAll(FloatIterable elements)
MutableFloatCollection
AbstractUnmodifiableFloatCollection. withoutAll(FloatIterable elements)
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableFloatCollection Modifier and Type Method Description static SynchronizedFloatCollection
SynchronizedFloatCollection. of(MutableFloatCollection collection)
This method will take a MutableFloatCollection and wrap it directly in a SynchronizedFloatCollection.static SynchronizedFloatCollection
SynchronizedFloatCollection. of(MutableFloatCollection collection, Object lock)
This method will take a MutableFloatCollection and wrap it directly in a SynchronizedFloatCollection.static UnmodifiableFloatCollection
UnmodifiableFloatCollection. of(MutableFloatCollection collection)
This method will take a MutableFloatCollection and wrap it directly in a UnmodifiableFloatCollection. -
Uses of MutableFloatCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableFloatCollection Modifier and Type Method Description static <T, R extends MutableFloatCollection>
Collector<T,?,R>Collectors2. collectFloat(FloatFunction<? super T> function, Supplier<R> supplier)
Returns a new MutableFloatCollection with the results of applying the specified FloatFunction on each element of the source. -
Uses of MutableFloatCollection in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RFastList. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RFastList. flatCollectFloat(Function<? super T,? extends FloatIterable> function, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableFloatCollection Modifier and Type Class Description class
FloatArrayList
FloatArrayList is similar toFastList
, and is memory-optimized for float primitives.class
SynchronizedFloatList
A synchronized view of aMutableFloatList
.class
UnmodifiableFloatList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RFloatArrayList. reject(FloatPredicate predicate, R target)
<R extends MutableFloatCollection>
RFloatArrayList. select(FloatPredicate predicate, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RUnmodifiableMutableMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableMutableMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableFloatCollection Modifier and Type Class Description class
AbstractMutableFloatKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RByteObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RCharObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RDoubleObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RFloatObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RIntObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RLongObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RShortObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RSynchronizedByteObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RSynchronizedCharObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RSynchronizedDoubleObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RSynchronizedFloatObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RSynchronizedIntObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RSynchronizedLongObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RSynchronizedShortObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableByteObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableCharObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableDoubleObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableFloatObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableIntObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableLongObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableShortObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RSynchronizedByteObjectMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RSynchronizedCharObjectMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RSynchronizedDoubleObjectMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RSynchronizedFloatObjectMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RSynchronizedIntObjectMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RSynchronizedLongObjectMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RSynchronizedShortObjectMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RUnmodifiableMutableOrderedMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableMutableOrderedMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RUnmodifiableTreeMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableTreeMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableFloatCollection Modifier and Type Class Description class
FloatHashSet
This file was automatically generated from template file primitiveHashSet.stg.class
SynchronizedFloatSet
A synchronized view of aMutableFloatSet
.class
UnmodifiableFloatSet
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RFloatHashSet. reject(FloatPredicate predicate, R target)
<R extends MutableFloatCollection>
RFloatHashSet. select(FloatPredicate predicate, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RArrayStack. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RSynchronizedStack. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RUnmodifiableStack. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RArrayStack. flatCollectFloat(Function<? super T,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RSynchronizedStack. flatCollectFloat(Function<? super T,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RUnmodifiableStack. flatCollectFloat(Function<? super T,? extends FloatIterable> function, R target)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with type parameters of type MutableFloatCollection Modifier and Type Method Description static <T, R extends MutableFloatCollection>
RArrayIterate. collectFloat(T[] objectArray, FloatFunction<? super T> floatFunction, R target)
static <T, R extends MutableFloatCollection>
RArrayListIterate. collectFloat(ArrayList<T> list, FloatFunction<? super T> floatFunction, R target)
static <T, R extends MutableFloatCollection>
RIterate. collectFloat(Iterable<T> iterable, FloatFunction<? super T> floatFunction, R target)
Same asIterate.collectFloat(Iterable, FloatFunction)
, except that the results are gathered into the specifiedtarget
collection.static <T, R extends MutableFloatCollection>
RListIterate. collectFloat(List<T> list, FloatFunction<? super T> floatFunction, R target)
static <K, V, R extends MutableFloatCollection>
RMapIterate. collectFloat(Map<K,V> map, FloatFunction<? super V> floatFunction, R target)
Methods in org.eclipse.collections.impl.utility that return MutableFloatCollection Modifier and Type Method Description static <T> MutableFloatCollection
Iterate. collectFloat(Iterable<T> iterable, FloatFunction<? super T> floatFunction)
Returns a newfloat
collection with the results of applying the specified floatFunction for each element of the iterable.static <K, V> MutableFloatCollection
MapIterate. collectFloat(Map<K,V> map, FloatFunction<? super V> floatFunction)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with type parameters of type MutableFloatCollection Modifier and Type Method Description static <T, R extends MutableFloatCollection>
RIterableIterate. collectFloat(Iterable<T> iterable, FloatFunction<? super T> floatFunction, R target)
static <T, R extends MutableFloatCollection>
RIteratorIterate. collectFloat(Iterator<T> iterator, FloatFunction<? super T> floatFunction, R target)
static <T, R extends MutableFloatCollection>
RRandomAccessListIterate. collectFloat(List<T> list, FloatFunction<? super T> floatFunction, R target)
Methods in org.eclipse.collections.impl.utility.internal that return MutableFloatCollection Modifier and Type Method Description static <T> MutableFloatCollection
IterableIterate. collectFloat(Iterable<T> iterable, FloatFunction<? super T> floatFunction)
static <T> MutableFloatCollection
IteratorIterate. collectFloat(Iterator<T> iterator, FloatFunction<? super T> floatFunction)
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with type parameters of type MutableFloatCollection Modifier and Type Method Description static <R extends MutableFloatCollection>
RFloatIterableIterate. reject(FloatIterable iterable, FloatPredicate predicate, R targetCollection)
static <R extends MutableFloatCollection>
RFloatIteratorIterate. reject(FloatIterator iterator, FloatPredicate predicate, R targetCollection)
static <R extends MutableFloatCollection>
RFloatIterableIterate. select(FloatIterable iterable, FloatPredicate predicate, R targetCollection)
static <R extends MutableFloatCollection>
RFloatIteratorIterate. select(FloatIterator iterator, FloatPredicate predicate, R targetCollection)