Uses of Interface
org.eclipse.collections.api.set.primitive.MutableDoubleSet
-
Packages that use MutableDoubleSet 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.factory.set.primitive This package contains factory API for creating primitive set instances.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 This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.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.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.set.mutable This package contains implementations ofMutableSet.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable 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 MutableDoubleSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetDoubleIterable. toSet()Converts the DoubleIterable to a new MutableDoubleSet. -
Uses of MutableDoubleSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetMutableDoubleBag. selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of MutableDoubleSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetMutableDoubleSetFactory. empty()MutableDoubleSetMutableDoubleSetFactory. of()Same asMutableDoubleSetFactory.empty().MutableDoubleSetMutableDoubleSetFactory. of(double... items)MutableDoubleSetMutableDoubleSetFactory. ofAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleSetMutableDoubleSetFactory. ofAll(java.util.stream.DoubleStream items)MutableDoubleSetMutableDoubleSetFactory. ofAll(DoubleIterable items)MutableDoubleSetMutableDoubleSetFactory. with()Same asMutableDoubleSetFactory.empty().MutableDoubleSetMutableDoubleSetFactory. with(double... items)MutableDoubleSetMutableDoubleSetFactory. withAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleSetMutableDoubleSetFactory. withAll(java.util.stream.DoubleStream items)MutableDoubleSetMutableDoubleSetFactory. withAll(DoubleIterable items)default MutableDoubleSetMutableDoubleSetFactory. withInitialCapacity(int capacity)Same asMutableDoubleSetFactory.empty(). -
Uses of MutableDoubleSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetDoubleBooleanMap. keySet()Returns a set containing all the keys in this map.MutableDoubleSetDoubleByteMap. keySet()Returns a set containing all the keys in this map.MutableDoubleSetDoubleCharMap. keySet()Returns a set containing all the keys in this map.MutableDoubleSetDoubleDoubleMap. keySet()Returns a set containing all the keys in this map.MutableDoubleSetDoubleFloatMap. keySet()Returns a set containing all the keys in this map.MutableDoubleSetDoubleIntMap. keySet()Returns a set containing all the keys in this map.MutableDoubleSetDoubleLongMap. keySet()Returns a set containing all the keys in this map.MutableDoubleSetDoubleObjectMap. keySet()Returns a set containing all the keys in this map.MutableDoubleSetDoubleShortMap. keySet()Returns a set containing all the keys in this map. -
Uses of MutableDoubleSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableDoubleSet Modifier and Type Method Description default MutableDoubleSetMutableSet. collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of MutableDoubleSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetMutableDoubleSet. asSynchronized()MutableDoubleSetMutableDoubleSet. asUnmodifiable()default MutableDoubleSetMutableDoubleSet. difference(DoubleSet set)Returns the set of all members ofthisthat are not members ofset.default MutableDoubleSetMutableDoubleSet. intersect(DoubleSet set)Returns the set of all objects that are members of boththisandset.default MutableDoubleSetMutableDoubleSet. newEmpty()Creates a new empty mutable version of the same Set type.MutableDoubleSetMutableDoubleSet. reject(DoublePredicate predicate)MutableDoubleSetMutableDoubleSet. select(DoublePredicate predicate)default MutableDoubleSetMutableDoubleSet. symmetricDifference(DoubleSet set)Returns the set of all objects that are a member of exactly one ofthisandset(elements which are in one of the sets, but not in both).default MutableDoubleSetMutableDoubleSet. tap(DoubleProcedure procedure)default MutableDoubleSetMutableDoubleSet. union(DoubleSet set)MutableDoubleSetMutableDoubleSet. with(double element)MutableDoubleSetMutableDoubleSet. withAll(DoubleIterable elements)MutableDoubleSetMutableDoubleSet. without(double element)MutableDoubleSetMutableDoubleSet. withoutAll(DoubleIterable elements) -
Uses of MutableDoubleSet in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetImmutableDoubleEmptyBag. toSet()MutableDoubleSetImmutableDoubleHashBag. toSet()MutableDoubleSetImmutableDoubleSingletonBag. toSet() -
Uses of MutableDoubleSet in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetDoubleHashBag. selectUnique()MutableDoubleSetSynchronizedDoubleBag. selectUnique()MutableDoubleSetUnmodifiableDoubleBag. selectUnique() -
Uses of MutableDoubleSet in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetAbstractSynchronizedDoubleCollection. toSet()MutableDoubleSetAbstractUnmodifiableDoubleCollection. toSet() -
Uses of MutableDoubleSet in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetAbstractLazyDoubleIterable. toSet()MutableDoubleSetCollectDoubleIterable. toSet()MutableDoubleSetLazyDoubleIterableAdapter. toSet()MutableDoubleSetReverseDoubleIterable. toSet()MutableDoubleSetSelectDoubleIterable. toSet() -
Uses of MutableDoubleSet in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetImmutableDoubleArrayList. toSet()MutableDoubleSetImmutableDoubleEmptyList. toSet()MutableDoubleSetImmutableDoubleSingletonList. toSet() -
Uses of MutableDoubleSet in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetImmutableDoubleBooleanEmptyMap. keySet()MutableDoubleSetImmutableDoubleBooleanHashMap. keySet()MutableDoubleSetImmutableDoubleBooleanSingletonMap. keySet()MutableDoubleSetImmutableDoubleByteEmptyMap. keySet()MutableDoubleSetImmutableDoubleByteHashMap. keySet()MutableDoubleSetImmutableDoubleByteSingletonMap. keySet()MutableDoubleSetImmutableDoubleCharEmptyMap. keySet()MutableDoubleSetImmutableDoubleCharHashMap. keySet()MutableDoubleSetImmutableDoubleCharSingletonMap. keySet()MutableDoubleSetImmutableDoubleDoubleEmptyMap. keySet()MutableDoubleSetImmutableDoubleDoubleHashMap. keySet()MutableDoubleSetImmutableDoubleDoubleSingletonMap. keySet()MutableDoubleSetImmutableDoubleFloatEmptyMap. keySet()MutableDoubleSetImmutableDoubleFloatHashMap. keySet()MutableDoubleSetImmutableDoubleFloatSingletonMap. keySet()MutableDoubleSetImmutableDoubleIntEmptyMap. keySet()MutableDoubleSetImmutableDoubleIntHashMap. keySet()MutableDoubleSetImmutableDoubleIntSingletonMap. keySet()MutableDoubleSetImmutableDoubleLongEmptyMap. keySet()MutableDoubleSetImmutableDoubleLongHashMap. keySet()MutableDoubleSetImmutableDoubleLongSingletonMap. keySet()MutableDoubleSetImmutableDoubleObjectEmptyMap. keySet()MutableDoubleSetImmutableDoubleObjectHashMap. keySet()MutableDoubleSetImmutableDoubleObjectSingletonMap. keySet()MutableDoubleSetImmutableDoubleShortEmptyMap. keySet()MutableDoubleSetImmutableDoubleShortHashMap. keySet()MutableDoubleSetImmutableDoubleShortSingletonMap. keySet()MutableDoubleSetImmutableByteDoubleEmptyMap. toSet()MutableDoubleSetImmutableByteDoubleHashMap. toSet()MutableDoubleSetImmutableByteDoubleSingletonMap. toSet()MutableDoubleSetImmutableCharDoubleEmptyMap. toSet()MutableDoubleSetImmutableCharDoubleHashMap. toSet()MutableDoubleSetImmutableCharDoubleSingletonMap. toSet()MutableDoubleSetImmutableDoubleDoubleEmptyMap. toSet()MutableDoubleSetImmutableDoubleDoubleHashMap. toSet()MutableDoubleSetImmutableDoubleDoubleSingletonMap. toSet()MutableDoubleSetImmutableFloatDoubleEmptyMap. toSet()MutableDoubleSetImmutableFloatDoubleHashMap. toSet()MutableDoubleSetImmutableFloatDoubleSingletonMap. toSet()MutableDoubleSetImmutableIntDoubleEmptyMap. toSet()MutableDoubleSetImmutableIntDoubleHashMap. toSet()MutableDoubleSetImmutableIntDoubleSingletonMap. toSet()MutableDoubleSetImmutableLongDoubleEmptyMap. toSet()MutableDoubleSetImmutableLongDoubleHashMap. toSet()MutableDoubleSetImmutableLongDoubleSingletonMap. toSet()MutableDoubleSetImmutableObjectDoubleEmptyMap. toSet()MutableDoubleSetImmutableObjectDoubleHashMap. toSet()MutableDoubleSetImmutableObjectDoubleSingletonMap. toSet()MutableDoubleSetImmutableShortDoubleEmptyMap. toSet()MutableDoubleSetImmutableShortDoubleHashMap. toSet()MutableDoubleSetImmutableShortDoubleSingletonMap. toSet() -
Uses of MutableDoubleSet in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableDoubleSet Modifier and Type Class Description classAbstractMutableDoubleKeySetThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.private classDoubleBooleanHashMap.KeySetprivate classDoubleByteHashMap.KeySetprivate classDoubleCharHashMap.KeySetprivate classDoubleDoubleHashMap.KeySetprivate classDoubleFloatHashMap.KeySetprivate classDoubleIntHashMap.KeySetprivate classDoubleLongHashMap.KeySetprivate classDoubleObjectHashMap.KeySetprivate classDoubleShortHashMap.KeySetMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetAbstractMutableDoubleKeySet. asSynchronized()MutableDoubleSetAbstractMutableDoubleKeySet. asUnmodifiable()MutableDoubleSetDoubleBooleanHashMap. keySet()MutableDoubleSetDoubleByteHashMap. keySet()MutableDoubleSetDoubleCharHashMap. keySet()MutableDoubleSetDoubleDoubleHashMap. keySet()MutableDoubleSetDoubleFloatHashMap. keySet()MutableDoubleSetDoubleIntHashMap. keySet()MutableDoubleSetDoubleLongHashMap. keySet()MutableDoubleSetDoubleObjectHashMap. keySet()MutableDoubleSetDoubleShortHashMap. keySet()MutableDoubleSetSynchronizedDoubleBooleanMap. keySet()MutableDoubleSetSynchronizedDoubleByteMap. keySet()MutableDoubleSetSynchronizedDoubleCharMap. keySet()MutableDoubleSetSynchronizedDoubleDoubleMap. keySet()MutableDoubleSetSynchronizedDoubleFloatMap. keySet()MutableDoubleSetSynchronizedDoubleIntMap. keySet()MutableDoubleSetSynchronizedDoubleLongMap. keySet()MutableDoubleSetSynchronizedDoubleObjectMap. keySet()MutableDoubleSetSynchronizedDoubleShortMap. keySet()MutableDoubleSetUnmodifiableDoubleBooleanMap. keySet()MutableDoubleSetUnmodifiableDoubleByteMap. keySet()MutableDoubleSetUnmodifiableDoubleCharMap. keySet()MutableDoubleSetUnmodifiableDoubleDoubleMap. keySet()MutableDoubleSetUnmodifiableDoubleFloatMap. keySet()MutableDoubleSetUnmodifiableDoubleIntMap. keySet()MutableDoubleSetUnmodifiableDoubleLongMap. keySet()MutableDoubleSetUnmodifiableDoubleObjectMap. keySet()MutableDoubleSetUnmodifiableDoubleShortMap. keySet()MutableDoubleSetDoubleBooleanHashMap.KeySet. newEmpty()MutableDoubleSetDoubleByteHashMap.KeySet. newEmpty()MutableDoubleSetDoubleCharHashMap.KeySet. newEmpty()MutableDoubleSetDoubleDoubleHashMap.KeySet. newEmpty()MutableDoubleSetDoubleFloatHashMap.KeySet. newEmpty()MutableDoubleSetDoubleIntHashMap.KeySet. newEmpty()MutableDoubleSetDoubleLongHashMap.KeySet. newEmpty()MutableDoubleSetDoubleObjectHashMap.KeySet. newEmpty()MutableDoubleSetDoubleShortHashMap.KeySet. newEmpty()MutableDoubleSetAbstractMutableDoubleKeySet. reject(DoublePredicate predicate)MutableDoubleSetAbstractMutableDoubleKeySet. select(DoublePredicate predicate)MutableDoubleSetAbstractMutableDoubleKeySet. toSet()MutableDoubleSetAbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection. toSet()MutableDoubleSetDoubleBooleanHashMap.KeysView. toSet()MutableDoubleSetObjectDoubleHashMap. toSet()MutableDoubleSetObjectDoubleHashMap.ValuesCollection. toSet()MutableDoubleSetObjectDoubleHashMapWithHashingStrategy. toSet()MutableDoubleSetObjectDoubleHashMapWithHashingStrategy.ValuesCollection. toSet()MutableDoubleSetSynchronizedByteDoubleMap. toSet()MutableDoubleSetSynchronizedCharDoubleMap. toSet()MutableDoubleSetSynchronizedDoubleDoubleMap. toSet()MutableDoubleSetSynchronizedFloatDoubleMap. toSet()MutableDoubleSetSynchronizedIntDoubleMap. toSet()MutableDoubleSetSynchronizedLongDoubleMap. toSet()MutableDoubleSetSynchronizedObjectDoubleMap. toSet()MutableDoubleSetSynchronizedShortDoubleMap. toSet()MutableDoubleSetUnmodifiableByteDoubleMap. toSet()MutableDoubleSetUnmodifiableCharDoubleMap. toSet()MutableDoubleSetUnmodifiableDoubleDoubleMap. toSet()MutableDoubleSetUnmodifiableFloatDoubleMap. toSet()MutableDoubleSetUnmodifiableIntDoubleMap. toSet()MutableDoubleSetUnmodifiableLongDoubleMap. toSet()MutableDoubleSetUnmodifiableObjectDoubleMap. toSet()MutableDoubleSetUnmodifiableShortDoubleMap. toSet()MutableDoubleSetAbstractMutableDoubleKeySet. with(double element)MutableDoubleSetAbstractMutableDoubleKeySet. withAll(DoubleIterable elements)MutableDoubleSetAbstractMutableDoubleKeySet. without(double element)MutableDoubleSetAbstractMutableDoubleKeySet. withoutAll(DoubleIterable elements) -
Uses of MutableDoubleSet in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetAbstractDoubleIterable. toSet()MutableDoubleSetSynchronizedDoubleIterable. toSet() -
Uses of MutableDoubleSet in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetImmutableDoubleEmptySet. toSet()MutableDoubleSetImmutableDoubleSingletonSet. toSet() -
Uses of MutableDoubleSet in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetMultiReaderUnifiedSet. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleSetMultiReaderUnifiedSet.UntouchableMutableSet. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleSetSynchronizedMutableSet. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleSetUnmodifiableMutableSet. collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of MutableDoubleSet in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableDoubleSet Modifier and Type Class Description classDoubleHashSetThis file was automatically generated from template file primitiveHashSet.stg.classSynchronizedDoubleSetA synchronized view of aMutableDoubleSet.classUnmodifiableDoubleSetThis file was automatically generated from template file unmodifiablePrimitiveSet.stg.Fields in org.eclipse.collections.impl.set.mutable.primitive declared as MutableDoubleSet Modifier and Type Field Description private MutableDoubleSetBoxedMutableDoubleSet. delegateMethods in org.eclipse.collections.impl.set.mutable.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetDoubleHashSet. asSynchronized()MutableDoubleSetSynchronizedDoubleSet. asSynchronized()MutableDoubleSetUnmodifiableDoubleSet. asSynchronized()MutableDoubleSetDoubleHashSet. asUnmodifiable()MutableDoubleSetSynchronizedDoubleSet. asUnmodifiable()MutableDoubleSetUnmodifiableDoubleSet. asUnmodifiable()MutableDoubleSetMutableDoubleSetFactoryImpl. empty()private MutableDoubleSetSynchronizedDoubleSet. getMutableDoubleSet()private MutableDoubleSetUnmodifiableDoubleSet. getMutableDoubleSet()MutableDoubleSetSynchronizedDoubleSet. newEmpty()MutableDoubleSetUnmodifiableDoubleSet. newEmpty()MutableDoubleSetMutableDoubleSetFactoryImpl. of()MutableDoubleSetMutableDoubleSetFactoryImpl. of(double... items)MutableDoubleSetMutableDoubleSetFactoryImpl. ofAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleSetMutableDoubleSetFactoryImpl. ofAll(java.util.stream.DoubleStream items)MutableDoubleSetMutableDoubleSetFactoryImpl. ofAll(DoubleIterable items)MutableDoubleSetSynchronizedDoubleSet. reject(DoublePredicate predicate)MutableDoubleSetUnmodifiableDoubleSet. reject(DoublePredicate predicate)MutableDoubleSetSynchronizedDoubleSet. select(DoublePredicate predicate)MutableDoubleSetUnmodifiableDoubleSet. select(DoublePredicate predicate)MutableDoubleSetMutableDoubleSetFactoryImpl. with()MutableDoubleSetMutableDoubleSetFactoryImpl. with(double... items)MutableDoubleSetMutableDoubleSetFactoryImpl. withAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleSetMutableDoubleSetFactoryImpl. withAll(java.util.stream.DoubleStream items)MutableDoubleSetMutableDoubleSetFactoryImpl. withAll(DoubleIterable items)MutableDoubleSetMutableDoubleSetFactoryImpl. withInitialCapacity(int capacity)Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableDoubleSet Modifier and Type Method Description static SynchronizedDoubleSetSynchronizedDoubleSet. of(MutableDoubleSet set)This method will take a MutableDoubleSet and wrap it directly in a SynchronizedDoubleSet.static SynchronizedDoubleSetSynchronizedDoubleSet. of(MutableDoubleSet set, java.lang.Object lock)This method will take a MutableDoubleSet and wrap it directly in a SynchronizedDoubleSet.static UnmodifiableDoubleSetUnmodifiableDoubleSet. of(MutableDoubleSet set)This method will take a MutableDoubleSet and wrap it directly in a UnmodifiableDoubleSet.Constructors in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableDoubleSet Constructor Description BoxedMutableDoubleSet(MutableDoubleSet delegate)SynchronizedDoubleSet(MutableDoubleSet set)SynchronizedDoubleSet(MutableDoubleSet set, java.lang.Object newLock)UnmodifiableDoubleSet(MutableDoubleSet set) -
Uses of MutableDoubleSet in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetImmutableDoubleEmptyStack. toSet()MutableDoubleSetImmutableDoubleSingletonStack. toSet() -
Uses of MutableDoubleSet in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetSynchronizedDoubleStack. toSet()MutableDoubleSetUnmodifiableDoubleStack. toSet() -
Uses of MutableDoubleSet in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableDoubleSet Modifier and Type Method Description MutableDoubleSetAbstractDoubleStack. toSet() -
Uses of MutableDoubleSet in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return MutableDoubleSet Modifier and Type Method Description static MutableDoubleSetPrimitiveStreams. mDoubleSet(java.util.stream.DoubleStream stream)
-