Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableFloatCollection
-
Packages that use 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.ordered.primitive 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 theMutableBiMap
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 theMutableCollection
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.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.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.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.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.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.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.default <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 default 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.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with type parameters of type MutableFloatCollection Modifier and Type Method Description default <R extends MutableFloatCollection>
ROrderedFloatIterable. rejectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableFloatCollection>
ROrderedFloatIterable. selectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection including all elements with corresponding indexes matching the specified predicate. -
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>
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
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as MutableFloatCollection Modifier and Type Field Description private MutableFloatCollection
CollectFloatProcedure. floatCollection
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>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. 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>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. 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
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.Fields in org.eclipse.collections.impl.collection.mutable.primitive declared as MutableFloatCollection Modifier and Type Field Description private MutableFloatCollection
AbstractSynchronizedFloatCollection. collection
private MutableFloatCollection
AbstractUnmodifiableFloatCollection. collection
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()
protected MutableFloatCollection
AbstractSynchronizedFloatCollection. getFloatCollection()
protected MutableFloatCollection
AbstractUnmodifiableFloatCollection. getFloatCollection()
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, java.lang.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.Constructors in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableFloatCollection Constructor Description AbstractSynchronizedFloatCollection(MutableFloatCollection collection)
AbstractSynchronizedFloatCollection(MutableFloatCollection collection, java.lang.Object newLock)
AbstractUnmodifiableFloatCollection(MutableFloatCollection collection)
SynchronizedFloatCollection(MutableFloatCollection collection)
SynchronizedFloatCollection(MutableFloatCollection collection, java.lang.Object newLock)
UnmodifiableFloatCollection(MutableFloatCollection collection)
-
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>
java.util.stream.Collector<T,?,R>Collectors2. collectFloat(FloatFunction<? super T> function, java.util.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.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive with type parameters of type MutableFloatCollection Modifier and Type Field Description private Function0<MutableFloatCollection>
ChunkFloatIterable.ChunkFloatIterator. speciesNewStrategy
-
Uses of MutableFloatCollection in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RImmutableFloatArrayList. reject(FloatPredicate predicate, R target)
<R extends MutableFloatCollection>
RImmutableFloatArrayList. select(FloatPredicate predicate, R target)
-
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 to FastList, 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>
RSynchronizedFloatList. rejectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableFloatCollection>
RUnmodifiableFloatList. rejectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableFloatCollection>
RFloatArrayList. select(FloatPredicate predicate, R target)
<R extends MutableFloatCollection>
RSynchronizedFloatList. selectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection including all elements with corresponding indexes matching the specified predicate.<R extends MutableFloatCollection>
RUnmodifiableFloatList. selectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableFloatCollection in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RImmutableByteObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableByteObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableByteObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableCharObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableCharObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableCharObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableDoubleObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableDoubleObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableDoubleObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableFloatObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableFloatObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableFloatObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableIntObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableIntObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableIntObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableLongObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableLongObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableLongObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableShortObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableShortObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableShortObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableByteObjectEmptyMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RImmutableCharObjectEmptyMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RImmutableDoubleObjectEmptyMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RImmutableFloatObjectEmptyMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RImmutableIntObjectEmptyMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RImmutableLongObjectEmptyMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
<R extends MutableFloatCollection>
RImmutableShortObjectEmptyMap. flatCollectFloat(Function<? super V,? extends FloatIterable> function, R target)
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableFloatCollection Modifier and Type Method Description MutableFloatCollection
ImmutableByteFloatEmptyMap. values()
MutableFloatCollection
ImmutableByteFloatHashMap. values()
MutableFloatCollection
ImmutableByteFloatSingletonMap. values()
MutableFloatCollection
ImmutableCharFloatEmptyMap. values()
MutableFloatCollection
ImmutableCharFloatHashMap. values()
MutableFloatCollection
ImmutableCharFloatSingletonMap. values()
MutableFloatCollection
ImmutableDoubleFloatEmptyMap. values()
MutableFloatCollection
ImmutableDoubleFloatHashMap. values()
MutableFloatCollection
ImmutableDoubleFloatSingletonMap. values()
MutableFloatCollection
ImmutableFloatFloatEmptyMap. values()
MutableFloatCollection
ImmutableFloatFloatHashMap. values()
MutableFloatCollection
ImmutableFloatFloatSingletonMap. values()
MutableFloatCollection
ImmutableIntFloatEmptyMap. values()
MutableFloatCollection
ImmutableIntFloatHashMap. values()
MutableFloatCollection
ImmutableIntFloatSingletonMap. values()
MutableFloatCollection
ImmutableLongFloatEmptyMap. values()
MutableFloatCollection
ImmutableLongFloatHashMap. values()
MutableFloatCollection
ImmutableLongFloatSingletonMap. values()
MutableFloatCollection
ImmutableObjectFloatEmptyMap. values()
MutableFloatCollection
ImmutableObjectFloatHashMap. values()
MutableFloatCollection
ImmutableObjectFloatSingletonMap. values()
MutableFloatCollection
ImmutableShortFloatEmptyMap. values()
MutableFloatCollection
ImmutableShortFloatHashMap. values()
MutableFloatCollection
ImmutableShortFloatSingletonMap. values()
-
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
Methods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableFloatCollection Modifier and Type Method Description <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)
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableFloatCollection Modifier and Type Method Description MutableFloatCollection
AbstractMutableFloatValuesMap.AbstractFloatValuesCollection. asSynchronized()
MutableFloatCollection
ObjectFloatHashMap.ValuesCollection. asSynchronized()
MutableFloatCollection
ObjectFloatHashMapWithHashingStrategy.ValuesCollection. asSynchronized()
MutableFloatCollection
AbstractMutableFloatValuesMap.AbstractFloatValuesCollection. asUnmodifiable()
MutableFloatCollection
ObjectFloatHashMap.ValuesCollection. asUnmodifiable()
MutableFloatCollection
ObjectFloatHashMapWithHashingStrategy.ValuesCollection. asUnmodifiable()
MutableFloatCollection
ByteFloatHashMap.ValuesCollection. newEmpty()
MutableFloatCollection
CharFloatHashMap.ValuesCollection. newEmpty()
MutableFloatCollection
DoubleFloatHashMap.ValuesCollection. newEmpty()
MutableFloatCollection
FloatFloatHashMap.ValuesCollection. newEmpty()
MutableFloatCollection
IntFloatHashMap.ValuesCollection. newEmpty()
MutableFloatCollection
LongFloatHashMap.ValuesCollection. newEmpty()
MutableFloatCollection
ObjectFloatHashMap.ValuesCollection. newEmpty()
MutableFloatCollection
ObjectFloatHashMapWithHashingStrategy.ValuesCollection. newEmpty()
MutableFloatCollection
ShortFloatHashMap.ValuesCollection. newEmpty()
MutableFloatCollection
AbstractMutableFloatValuesMap.AbstractFloatValuesCollection. reject(FloatPredicate predicate)
MutableFloatCollection
ObjectFloatHashMap. reject(FloatPredicate predicate)
MutableFloatCollection
ObjectFloatHashMap.ValuesCollection. reject(FloatPredicate predicate)
MutableFloatCollection
ObjectFloatHashMapWithHashingStrategy. reject(FloatPredicate predicate)
MutableFloatCollection
ObjectFloatHashMapWithHashingStrategy.ValuesCollection. reject(FloatPredicate predicate)
MutableFloatCollection
SynchronizedObjectFloatMap. reject(FloatPredicate predicate)
MutableFloatCollection
UnmodifiableObjectFloatMap. reject(FloatPredicate predicate)
MutableFloatCollection
AbstractMutableFloatValuesMap.AbstractFloatValuesCollection. select(FloatPredicate predicate)
MutableFloatCollection
ObjectFloatHashMap. select(FloatPredicate predicate)
MutableFloatCollection
ObjectFloatHashMap.ValuesCollection. select(FloatPredicate predicate)
MutableFloatCollection
ObjectFloatHashMapWithHashingStrategy. select(FloatPredicate predicate)
MutableFloatCollection
ObjectFloatHashMapWithHashingStrategy.ValuesCollection. select(FloatPredicate predicate)
MutableFloatCollection
SynchronizedObjectFloatMap. select(FloatPredicate predicate)
MutableFloatCollection
UnmodifiableObjectFloatMap. select(FloatPredicate predicate)
MutableFloatCollection
ByteFloatHashMap. values()
MutableFloatCollection
CharFloatHashMap. values()
MutableFloatCollection
DoubleFloatHashMap. values()
MutableFloatCollection
FloatFloatHashMap. values()
MutableFloatCollection
IntFloatHashMap. values()
MutableFloatCollection
LongFloatHashMap. values()
MutableFloatCollection
ObjectFloatHashMap. values()
MutableFloatCollection
ObjectFloatHashMapWithHashingStrategy. values()
MutableFloatCollection
ShortFloatHashMap. values()
MutableFloatCollection
SynchronizedByteFloatMap. values()
MutableFloatCollection
SynchronizedCharFloatMap. values()
MutableFloatCollection
SynchronizedDoubleFloatMap. values()
MutableFloatCollection
SynchronizedFloatFloatMap. values()
MutableFloatCollection
SynchronizedIntFloatMap. values()
MutableFloatCollection
SynchronizedLongFloatMap. values()
MutableFloatCollection
SynchronizedObjectFloatMap. values()
MutableFloatCollection
SynchronizedShortFloatMap. values()
MutableFloatCollection
UnmodifiableByteFloatMap. values()
MutableFloatCollection
UnmodifiableCharFloatMap. values()
MutableFloatCollection
UnmodifiableDoubleFloatMap. values()
MutableFloatCollection
UnmodifiableFloatFloatMap. values()
MutableFloatCollection
UnmodifiableIntFloatMap. values()
MutableFloatCollection
UnmodifiableLongFloatMap. values()
MutableFloatCollection
UnmodifiableObjectFloatMap. values()
MutableFloatCollection
UnmodifiableShortFloatMap. values()
MutableFloatCollection
AbstractMutableFloatValuesMap.AbstractFloatValuesCollection. with(float element)
MutableFloatCollection
ObjectFloatHashMap.ValuesCollection. with(float element)
MutableFloatCollection
ObjectFloatHashMapWithHashingStrategy.ValuesCollection. with(float element)
MutableFloatCollection
AbstractMutableFloatValuesMap.AbstractFloatValuesCollection. withAll(FloatIterable elements)
MutableFloatCollection
ObjectFloatHashMap.ValuesCollection. withAll(FloatIterable elements)
MutableFloatCollection
ObjectFloatHashMapWithHashingStrategy.ValuesCollection. withAll(FloatIterable elements)
MutableFloatCollection
AbstractMutableFloatValuesMap.AbstractFloatValuesCollection. without(float element)
MutableFloatCollection
ObjectFloatHashMap.ValuesCollection. without(float element)
MutableFloatCollection
ObjectFloatHashMapWithHashingStrategy.ValuesCollection. without(float element)
MutableFloatCollection
AbstractMutableFloatValuesMap.AbstractFloatValuesCollection. withoutAll(FloatIterable elements)
MutableFloatCollection
ObjectFloatHashMap.ValuesCollection. withoutAll(FloatIterable elements)
MutableFloatCollection
ObjectFloatHashMapWithHashingStrategy.ValuesCollection. withoutAll(FloatIterable elements)
-
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.immutable
Methods in org.eclipse.collections.impl.stack.immutable with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RImmutableArrayStack. collectFloat(FloatFunction<? super T> floatFunction, R target)
Deprecated.<R extends MutableFloatCollection>
RImmutableEmptyStack. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RImmutableArrayStack. flatCollectFloat(Function<? super T,? extends FloatIterable> function, R target)
Deprecated.<R extends MutableFloatCollection>
RImmutableEmptyStack. flatCollectFloat(Function<? super T,? extends FloatIterable> function, 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.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with type parameters of type MutableFloatCollection Modifier and Type Method Description <R extends MutableFloatCollection>
RSynchronizedFloatStack. rejectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableFloatCollection>
RSynchronizedFloatStack. selectWithIndex(FloatIntPredicate predicate, R target)
Returns a new MutableFloatCollection including all elements with corresponding indexes matching the specified predicate. -
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(java.util.ArrayList<T> list, FloatFunction<? super T> floatFunction, R target)
static <T,R extends MutableFloatCollection>
RIterate. collectFloat(java.lang.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(java.util.List<T> list, FloatFunction<? super T> floatFunction, R target)
static <K,V,R extends MutableFloatCollection>
RMapIterate. collectFloat(java.util.Map<K,V> map, FloatFunction<? super V> floatFunction, R target)
private static <T,R extends MutableFloatCollection>
RArrayListIterate. collectFloatFromInternalArray(java.util.ArrayList<T> source, FloatFunction<? super T> floatFunction, int elementsToCollect, R target)
Methods in org.eclipse.collections.impl.utility that return MutableFloatCollection Modifier and Type Method Description static <T> MutableFloatCollection
Iterate. collectFloat(java.lang.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>
MutableFloatCollectionMapIterate. collectFloat(java.util.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(java.lang.Iterable<T> iterable, FloatFunction<? super T> floatFunction, R target)
static <T,R extends MutableFloatCollection>
RIteratorIterate. collectFloat(java.util.Iterator<T> iterator, FloatFunction<? super T> floatFunction, R target)
static <T,R extends MutableFloatCollection>
RRandomAccessListIterate. collectFloat(java.util.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(java.lang.Iterable<T> iterable, FloatFunction<? super T> floatFunction)
static <T> MutableFloatCollection
IteratorIterate. collectFloat(java.util.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)
-