Uses of Interface
org.eclipse.collections.api.set.primitive.MutableDoubleSet
Packages that use MutableDoubleSet
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains factory API for creating primitive set instances.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains API for mutable and immutable primitive sets.
-
Uses of MutableDoubleSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableDoubleSetModifier and TypeMethodDescriptionDoubleIterable.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 MutableDoubleSetModifier and TypeMethodDescriptionMutableDoubleBag.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 MutableDoubleSetModifier and TypeMethodDescriptionMutableDoubleSetFactory.empty()MutableDoubleSetFactory.of()Same asMutableDoubleSetFactory.empty().MutableDoubleSetFactory.of(double... items) MutableDoubleSetFactory.ofAll(DoubleStream items) MutableDoubleSetFactory.ofAll(DoubleIterable items) MutableDoubleSetFactory.with()Same asMutableDoubleSetFactory.empty().MutableDoubleSetFactory.with(double... items) MutableDoubleSetFactory.withAll(DoubleStream items) MutableDoubleSetFactory.withAll(DoubleIterable items) default MutableDoubleSetMutableDoubleSetFactory.withInitialCapacity(int capacity) Same asMutableDoubleSetFactory.empty(). but takes in an initial capacity -
Uses of MutableDoubleSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleSetModifier and TypeMethodDescriptionDoubleBooleanMap.keySet()Returns a set containing all the keys in this map.DoubleByteMap.keySet()Returns a set containing all the keys in this map.DoubleCharMap.keySet()Returns a set containing all the keys in this map.DoubleDoubleMap.keySet()Returns a set containing all the keys in this map.DoubleFloatMap.keySet()Returns a set containing all the keys in this map.DoubleIntMap.keySet()Returns a set containing all the keys in this map.DoubleLongMap.keySet()Returns a set containing all the keys in this map.DoubleObjectMap.keySet()Returns a set containing all the keys in this map.DoubleShortMap.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 MutableDoubleSetModifier and TypeMethodDescriptiondefault 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 MutableDoubleSetModifier and TypeMethodDescriptionMutableDoubleSet.asSynchronized()MutableDoubleSet.asUnmodifiable()default MutableDoubleSetMutableDoubleSet.difference(DoubleSet set) Returns the set of all members ofthisthat are not members ofset.default MutableDoubleSetReturns the set of all objects that are members of boththisandset.default MutableDoubleSetMutableDoubleSet.newEmpty()Creates a new empty mutable version of the same Set type.MutableDoubleSet.reject(DoublePredicate predicate) MutableDoubleSet.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.with(double element) MutableDoubleSet.withAll(DoubleIterable elements) MutableDoubleSet.without(double element) MutableDoubleSet.withoutAll(DoubleIterable elements)