Uses of Interface
org.eclipse.collections.api.bag.primitive.ImmutableDoubleBag
Packages that use ImmutableDoubleBag
Package
Description
This package contains interfaces for Bag API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
-
Uses of ImmutableDoubleBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableDoubleBagModifier and TypeMethodDescriptionImmutableBag.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of ImmutableDoubleBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableDoubleBagModifier and TypeMethodDescriptionImmutableDoubleBag.newWith(double element) ImmutableDoubleBag.newWithAll(DoubleIterable elements) ImmutableDoubleBag.newWithout(double element) ImmutableDoubleBag.newWithoutAll(DoubleIterable elements) ImmutableDoubleBag.reject(DoublePredicate predicate) ImmutableDoubleBag.select(DoublePredicate predicate) ImmutableDoubleBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default ImmutableDoubleBagImmutableDoubleBag.selectDuplicates()Returns all elements of the bag that have more than one occurrence.default ImmutableDoubleBagImmutableDoubleBag.tap(DoubleProcedure procedure) DoubleBag.toImmutable()Returns an immutable copy of this bag.MutableDoubleBag.toImmutable()Returns an immutable copy of this bag. -
Uses of ImmutableDoubleBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return ImmutableDoubleBagModifier and TypeMethodDescriptionImmutableDoubleBagFactory.empty()ImmutableDoubleBagFactory.of()Same asImmutableDoubleBagFactory.empty().ImmutableDoubleBagFactory.of(double one) ImmutableDoubleBagFactory.of(double... items) ImmutableDoubleBagFactory.ofAll(DoubleStream items) ImmutableDoubleBagFactory.ofAll(DoubleIterable items) ImmutableDoubleBagFactory.with()Same asImmutableDoubleBagFactory.empty().ImmutableDoubleBagFactory.with(double one) ImmutableDoubleBagFactory.with(double... items) ImmutableDoubleBagFactory.withAll(DoubleStream items) ImmutableDoubleBagFactory.withAll(DoubleIterable items) -
Uses of ImmutableDoubleBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableDoubleBagModifier and TypeMethodDescriptionImmutableMap.collectDouble(DoubleFunction<? super V> doubleFunction) -
Uses of ImmutableDoubleBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableDoubleBagModifier and TypeMethodDescriptionImmutablePrimitiveObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) ImmutableByteDoubleMap.reject(DoublePredicate predicate) ImmutableCharDoubleMap.reject(DoublePredicate predicate) ImmutableDoubleDoubleMap.reject(DoublePredicate predicate) ImmutableFloatDoubleMap.reject(DoublePredicate predicate) ImmutableIntDoubleMap.reject(DoublePredicate predicate) ImmutableLongDoubleMap.reject(DoublePredicate predicate) ImmutableShortDoubleMap.reject(DoublePredicate predicate) ImmutableByteDoubleMap.select(DoublePredicate predicate) ImmutableCharDoubleMap.select(DoublePredicate predicate) ImmutableDoubleDoubleMap.select(DoublePredicate predicate) ImmutableFloatDoubleMap.select(DoublePredicate predicate) ImmutableIntDoubleMap.select(DoublePredicate predicate) ImmutableLongDoubleMap.select(DoublePredicate predicate) ImmutableShortDoubleMap.select(DoublePredicate predicate)