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. -
-
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 targetMutableFloatCollectionwith 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 targetMutableFloatCollectionwith 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 targetMutableFloatCollectionwith 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 targetMutableFloatCollectionwith 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 targetMutableFloatCollectionwith 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 targetMutableFloatCollectionwith 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 targetMutableFloatCollectionwith 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 specifiedtargetcollection.default <R extends MutableFloatCollection>
RShortIterable. collectFloat(ShortToFloatFunction function, R target)Returns the targetMutableFloatCollectionwith 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 interfaceMutableFloatBagThis 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 MutableFloatCollectionMutableCollection. collectFloat(FloatFunction<? super T> floatFunction)Returns a new primitivefloatiterable 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 MutableFloatCollectionMutableFloatCollection. asSynchronized()MutableFloatCollectionMutableFloatCollection. asUnmodifiable()default MutableFloatCollectionMutableFloatCollection. newEmpty()Creates a new empty mutable version of the same collection type.MutableFloatCollectionMutableFloatCollection. reject(FloatPredicate predicate)MutableFloatCollectionMutableFloatCollection. select(FloatPredicate predicate)default MutableFloatCollectionMutableFloatCollection. tap(FloatProcedure procedure)MutableFloatCollectionMutableFloatCollection. with(float element)MutableFloatCollectionMutableFloatCollection. withAll(FloatIterable elements)MutableFloatCollectionMutableFloatCollection. without(float element)MutableFloatCollectionMutableFloatCollection. 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 interfaceMutableFloatListThis 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 MutableFloatCollectionMutableObjectFloatMap. reject(FloatPredicate predicate)MutableFloatCollectionMutableObjectFloatMap. select(FloatPredicate predicate)MutableFloatCollectionFloatValuesMap. values()Returns the values in this map as a separate collection.MutableFloatCollectionObjectFloatMap. 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 interfaceMutableFloatSetThis file was automatically generated from template file mutablePrimitiveSet.stg.
-