Uses of Interface
org.eclipse.collections.api.bag.primitive.MutableDoubleBag
-
Packages that use MutableDoubleBag Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.factory.bag.primitive org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
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.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.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.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.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.stream -
-
Uses of MutableDoubleBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
DoubleIterable. toBag()
Converts the DoubleIterable to a new MutableDoubleBag. -
Uses of MutableDoubleBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableDoubleBag Modifier and Type Method Description default MutableDoubleBag
MutableBag. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of MutableDoubleBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
MutableDoubleBag. asSynchronized()
MutableDoubleBag
MutableDoubleBag. asUnmodifiable()
default MutableDoubleBag
MutableDoubleBag. newEmpty()
Creates a new empty mutable version of the same Bag type.MutableDoubleBag
MutableDoubleBag. reject(DoublePredicate predicate)
MutableDoubleBag
MutableDoubleBag. select(DoublePredicate predicate)
MutableDoubleBag
MutableDoubleBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default MutableDoubleBag
MutableDoubleBag. selectDuplicates()
Returns all elements of the bag that have more than one occurrence.default MutableDoubleBag
MutableDoubleBag. tap(DoubleProcedure procedure)
MutableDoubleBag
MutableDoubleBag. with(double element)
MutableDoubleBag
MutableDoubleBag. withAll(DoubleIterable elements)
MutableDoubleBag
MutableDoubleBag. without(double element)
MutableDoubleBag
MutableDoubleBag. withoutAll(DoubleIterable elements)
-
Uses of MutableDoubleBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
MutableDoubleBagFactory. empty()
MutableDoubleBag
MutableDoubleBagFactory. of()
Same asMutableDoubleBagFactory.empty()
.MutableDoubleBag
MutableDoubleBagFactory. of(double... items)
MutableDoubleBag
MutableDoubleBagFactory. ofAll(java.lang.Iterable<java.lang.Double> iterable)
MutableDoubleBag
MutableDoubleBagFactory. ofAll(java.util.stream.DoubleStream items)
MutableDoubleBag
MutableDoubleBagFactory. ofAll(DoubleIterable items)
MutableDoubleBag
MutableDoubleBagFactory. with()
Same asMutableDoubleBagFactory.empty()
.MutableDoubleBag
MutableDoubleBagFactory. with(double... items)
MutableDoubleBag
MutableDoubleBagFactory. withAll(java.lang.Iterable<java.lang.Double> iterable)
MutableDoubleBag
MutableDoubleBagFactory. withAll(java.util.stream.DoubleStream items)
MutableDoubleBag
MutableDoubleBagFactory. withAll(DoubleIterable items)
-
Uses of MutableDoubleBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
MutableMap. collectDouble(DoubleFunction<? super V> doubleFunction)
-
Uses of MutableDoubleBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
MutablePrimitiveObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
MutableDoubleValuesMap. reject(DoublePredicate predicate)
MutableDoubleBag
MutableDoubleValuesMap. select(DoublePredicate predicate)
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.bag.immutable.primitive
Fields in org.eclipse.collections.impl.bag.immutable.primitive declared as MutableDoubleBag Modifier and Type Field Description private MutableDoubleBag
ImmutableDoubleHashBag. delegate
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
ImmutableDoubleEmptyBag. toBag()
MutableDoubleBag
ImmutableDoubleHashBag. toBag()
MutableDoubleBag
ImmutableDoubleSingletonBag. toBag()
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
MultiReaderHashBag. collectDouble(DoubleFunction<? super T> doubleFunction)
MutableDoubleBag
MultiReaderHashBag.UntouchableMutableBag. collectDouble(DoubleFunction<? super T> doubleFunction)
MutableDoubleBag
SynchronizedBag. collectDouble(DoubleFunction<? super T> doubleFunction)
MutableDoubleBag
UnmodifiableBag. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableDoubleBag Modifier and Type Class Description class
DoubleHashBag
DoubleHashBag is similar toHashBag
, and is memory-optimized for double primitives.class
SynchronizedDoubleBag
A synchronized view of aMutableDoubleBag
.class
UnmodifiableDoubleBag
This file was automatically generated from template file unmodifiablePrimitiveBag.stg.Methods in org.eclipse.collections.impl.bag.mutable.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
DoubleHashBag. asSynchronized()
MutableDoubleBag
SynchronizedDoubleBag. asSynchronized()
MutableDoubleBag
UnmodifiableDoubleBag. asSynchronized()
MutableDoubleBag
DoubleHashBag. asUnmodifiable()
MutableDoubleBag
SynchronizedDoubleBag. asUnmodifiable()
MutableDoubleBag
UnmodifiableDoubleBag. asUnmodifiable()
MutableDoubleBag
MutableDoubleBagFactoryImpl. empty()
private MutableDoubleBag
SynchronizedDoubleBag. getMutableDoubleBag()
private MutableDoubleBag
UnmodifiableDoubleBag. getMutableDoubleBag()
MutableDoubleBag
SynchronizedDoubleBag. newEmpty()
MutableDoubleBag
UnmodifiableDoubleBag. newEmpty()
MutableDoubleBag
MutableDoubleBagFactoryImpl. of()
MutableDoubleBag
MutableDoubleBagFactoryImpl. of(double... items)
MutableDoubleBag
MutableDoubleBagFactoryImpl. ofAll(java.lang.Iterable<java.lang.Double> iterable)
MutableDoubleBag
MutableDoubleBagFactoryImpl. ofAll(java.util.stream.DoubleStream items)
MutableDoubleBag
MutableDoubleBagFactoryImpl. ofAll(DoubleIterable items)
MutableDoubleBag
SynchronizedDoubleBag. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableDoubleBag. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedDoubleBag. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableDoubleBag. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedDoubleBag. selectByOccurrences(IntPredicate predicate)
MutableDoubleBag
UnmodifiableDoubleBag. selectByOccurrences(IntPredicate predicate)
MutableDoubleBag
MutableDoubleBagFactoryImpl. with()
MutableDoubleBag
MutableDoubleBagFactoryImpl. with(double... items)
MutableDoubleBag
MutableDoubleBagFactoryImpl. withAll(java.lang.Iterable<java.lang.Double> iterable)
MutableDoubleBag
MutableDoubleBagFactoryImpl. withAll(java.util.stream.DoubleStream items)
MutableDoubleBag
MutableDoubleBagFactoryImpl. withAll(DoubleIterable items)
Constructors in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type MutableDoubleBag Constructor Description SynchronizedDoubleBag(MutableDoubleBag bag)
SynchronizedDoubleBag(MutableDoubleBag bag, java.lang.Object newLock)
UnmodifiableDoubleBag(MutableDoubleBag bag)
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
AbstractMutableBiMap. collectDouble(DoubleFunction<? super V> doubleFunction)
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
AbstractSynchronizedDoubleCollection. toBag()
MutableDoubleBag
AbstractUnmodifiableDoubleCollection. toBag()
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
AbstractLazyDoubleIterable. toBag()
MutableDoubleBag
CollectDoubleIterable. toBag()
MutableDoubleBag
LazyDoubleIterableAdapter. toBag()
MutableDoubleBag
ReverseDoubleIterable. toBag()
MutableDoubleBag
SelectDoubleIterable. toBag()
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
ImmutableDoubleArrayList. toBag()
MutableDoubleBag
ImmutableDoubleEmptyList. toBag()
MutableDoubleBag
ImmutableDoubleSingletonList. toBag()
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
ImmutableByteDoubleEmptyMap. toBag()
MutableDoubleBag
ImmutableByteDoubleHashMap. toBag()
MutableDoubleBag
ImmutableByteDoubleSingletonMap. toBag()
MutableDoubleBag
ImmutableCharDoubleEmptyMap. toBag()
MutableDoubleBag
ImmutableCharDoubleHashMap. toBag()
MutableDoubleBag
ImmutableCharDoubleSingletonMap. toBag()
MutableDoubleBag
ImmutableDoubleDoubleEmptyMap. toBag()
MutableDoubleBag
ImmutableDoubleDoubleHashMap. toBag()
MutableDoubleBag
ImmutableDoubleDoubleSingletonMap. toBag()
MutableDoubleBag
ImmutableFloatDoubleEmptyMap. toBag()
MutableDoubleBag
ImmutableFloatDoubleHashMap. toBag()
MutableDoubleBag
ImmutableFloatDoubleSingletonMap. toBag()
MutableDoubleBag
ImmutableIntDoubleEmptyMap. toBag()
MutableDoubleBag
ImmutableIntDoubleHashMap. toBag()
MutableDoubleBag
ImmutableIntDoubleSingletonMap. toBag()
MutableDoubleBag
ImmutableLongDoubleEmptyMap. toBag()
MutableDoubleBag
ImmutableLongDoubleHashMap. toBag()
MutableDoubleBag
ImmutableLongDoubleSingletonMap. toBag()
MutableDoubleBag
ImmutableObjectDoubleEmptyMap. toBag()
MutableDoubleBag
ImmutableObjectDoubleHashMap. toBag()
MutableDoubleBag
ImmutableObjectDoubleSingletonMap. toBag()
MutableDoubleBag
ImmutableShortDoubleEmptyMap. toBag()
MutableDoubleBag
ImmutableShortDoubleHashMap. toBag()
MutableDoubleBag
ImmutableShortDoubleSingletonMap. toBag()
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
AbstractMutableMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
SynchronizedMutableMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
UnmodifiableMutableMap. collectDouble(DoubleFunction<? super V> doubleFunction)
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
ByteObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
CharObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
DoubleObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
FloatObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
IntObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
LongObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
ShortObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
SynchronizedByteObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
SynchronizedCharObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
SynchronizedDoubleObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
SynchronizedFloatObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
SynchronizedIntObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
SynchronizedLongObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
SynchronizedShortObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
UnmodifiableByteObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
UnmodifiableCharObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
UnmodifiableDoubleObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
UnmodifiableFloatObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
UnmodifiableIntObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
UnmodifiableLongObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
UnmodifiableShortObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)
MutableDoubleBag
AbstractMutableDoubleValuesMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedByteDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedCharDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedDoubleDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedFloatDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedIntDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedLongDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedShortDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableByteDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableCharDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableDoubleDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableFloatDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableIntDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableLongDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableShortDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
AbstractMutableDoubleValuesMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedByteDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedCharDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedDoubleDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedFloatDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedIntDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedLongDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedShortDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableByteDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableCharDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableDoubleDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableFloatDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableIntDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableLongDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableShortDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
AbstractMutableDoubleKeySet. toBag()
MutableDoubleBag
AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection. toBag()
MutableDoubleBag
DoubleBooleanHashMap.KeysView. toBag()
MutableDoubleBag
ObjectDoubleHashMap. toBag()
MutableDoubleBag
ObjectDoubleHashMap.ValuesCollection. toBag()
MutableDoubleBag
ObjectDoubleHashMapWithHashingStrategy. toBag()
MutableDoubleBag
ObjectDoubleHashMapWithHashingStrategy.ValuesCollection. toBag()
MutableDoubleBag
SynchronizedByteDoubleMap. toBag()
MutableDoubleBag
SynchronizedCharDoubleMap. toBag()
MutableDoubleBag
SynchronizedDoubleDoubleMap. toBag()
MutableDoubleBag
SynchronizedFloatDoubleMap. toBag()
MutableDoubleBag
SynchronizedIntDoubleMap. toBag()
MutableDoubleBag
SynchronizedLongDoubleMap. toBag()
MutableDoubleBag
SynchronizedObjectDoubleMap. toBag()
MutableDoubleBag
SynchronizedShortDoubleMap. toBag()
MutableDoubleBag
UnmodifiableByteDoubleMap. toBag()
MutableDoubleBag
UnmodifiableCharDoubleMap. toBag()
MutableDoubleBag
UnmodifiableDoubleDoubleMap. toBag()
MutableDoubleBag
UnmodifiableFloatDoubleMap. toBag()
MutableDoubleBag
UnmodifiableIntDoubleMap. toBag()
MutableDoubleBag
UnmodifiableLongDoubleMap. toBag()
MutableDoubleBag
UnmodifiableObjectDoubleMap. toBag()
MutableDoubleBag
UnmodifiableShortDoubleMap. toBag()
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
AbstractDoubleIterable. toBag()
MutableDoubleBag
SynchronizedDoubleIterable. toBag()
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
ImmutableDoubleEmptySet. toBag()
MutableDoubleBag
ImmutableDoubleSingletonSet. toBag()
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
ImmutableDoubleEmptyStack. toBag()
MutableDoubleBag
ImmutableDoubleSingletonStack. toBag()
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
SynchronizedDoubleStack. toBag()
MutableDoubleBag
UnmodifiableDoubleStack. toBag()
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableDoubleBag Modifier and Type Method Description MutableDoubleBag
AbstractDoubleStack. toBag()
-
Uses of MutableDoubleBag in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return MutableDoubleBag Modifier and Type Method Description static MutableDoubleBag
PrimitiveStreams. mDoubleBag(java.util.stream.DoubleStream stream)
-