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. -
-
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(Iterable<Double> iterable)MutableDoubleSetMutableDoubleSetFactory. ofAll(DoubleStream items)MutableDoubleSetMutableDoubleSetFactory. ofAll(DoubleIterable items)MutableDoubleSetMutableDoubleSetFactory. with()Same asMutableDoubleSetFactory.empty().MutableDoubleSetMutableDoubleSetFactory. with(double... items)MutableDoubleSetMutableDoubleSetFactory. withAll(Iterable<Double> iterable)MutableDoubleSetMutableDoubleSetFactory. withAll(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)
-