Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableDoubleCollection
-
Packages that use MutableDoubleCollection 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 MutableDoubleCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableDoubleCollection Modifier and Type Method Description default <R extends MutableDoubleCollection>
RBooleanIterable. collectDouble(BooleanToDoubleFunction function, R target)Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RByteIterable. collectDouble(ByteToDoubleFunction function, R target)Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RCharIterable. collectDouble(CharToDoubleFunction function, R target)Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RDoubleIterable. collectDouble(DoubleToDoubleFunction function, R target)Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RFloatIterable. collectDouble(FloatToDoubleFunction function, R target)Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RIntIterable. collectDouble(IntToDoubleFunction function, R target)Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RLongIterable. collectDouble(LongToDoubleFunction function, R target)Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RRichIterable. collectDouble(DoubleFunction<? super T> doubleFunction, R target)Same asRichIterable.collectDouble(DoubleFunction), except that the results are gathered into the specifiedtargetcollection.default <R extends MutableDoubleCollection>
RShortIterable. collectDouble(ShortToDoubleFunction function, R target)Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RRichIterable. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target)Same as flatCollect, only the results are collected into the target collection.default <R extends MutableDoubleCollection>
RDoubleIterable. reject(DoublePredicate predicate, R target)Same asDoubleIterable.reject(DoublePredicate), only the results are added to the target MutableDoubleCollection.default <R extends MutableDoubleCollection>
RDoubleIterable. select(DoublePredicate predicate, R target)Same asDoubleIterable.select(DoublePredicate), only the results are added to the target MutableDoubleCollection. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.bag.primitive
Subinterfaces of MutableDoubleCollection in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interfaceMutableDoubleBagThis file was automatically generated from template file mutablePrimitiveBag.stg. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableDoubleCollection Modifier and Type Method Description default MutableDoubleCollectionMutableCollection. collectDouble(DoubleFunction<? super T> doubleFunction)Returns a new primitivedoubleiterable with the results of applying the specified function on each element of the source collection. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive that return MutableDoubleCollection Modifier and Type Method Description MutableDoubleCollectionMutableDoubleCollection. asSynchronized()MutableDoubleCollectionMutableDoubleCollection. asUnmodifiable()default MutableDoubleCollectionMutableDoubleCollection. newEmpty()Creates a new empty mutable version of the same collection type.MutableDoubleCollectionMutableDoubleCollection. reject(DoublePredicate predicate)MutableDoubleCollectionMutableDoubleCollection. select(DoublePredicate predicate)default MutableDoubleCollectionMutableDoubleCollection. tap(DoubleProcedure procedure)MutableDoubleCollectionMutableDoubleCollection. with(double element)MutableDoubleCollectionMutableDoubleCollection. withAll(DoubleIterable elements)MutableDoubleCollectionMutableDoubleCollection. without(double element)MutableDoubleCollectionMutableDoubleCollection. withoutAll(DoubleIterable elements) -
Uses of MutableDoubleCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableDoubleCollection in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interfaceMutableDoubleListThis file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleCollection Modifier and Type Method Description MutableDoubleCollectionMutableObjectDoubleMap. reject(DoublePredicate predicate)MutableDoubleCollectionMutableObjectDoubleMap. select(DoublePredicate predicate)MutableDoubleCollectionDoubleValuesMap. values()Returns the values in this map as a separate collection.MutableDoubleCollectionObjectDoubleMap. values()Returns the values in this map as a separate collection. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with type parameters of type MutableDoubleCollection Modifier and Type Method Description default <R extends MutableDoubleCollection>
ROrderedDoubleIterable. rejectWithIndex(DoubleIntPredicate predicate, R target)Returns a new MutableDoubleCollection excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableDoubleCollection>
ROrderedDoubleIterable. selectWithIndex(DoubleIntPredicate predicate, R target)Returns a new MutableDoubleCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.set.primitive
Subinterfaces of MutableDoubleCollection in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interfaceMutableDoubleSetThis file was automatically generated from template file mutablePrimitiveSet.stg.
-