Uses of Interface
org.eclipse.collections.api.bag.primitive.ImmutableFloatBag
-
Packages that use ImmutableFloatBag Package Description 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 This package contains implementations of theImmutableBag
interface.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.bimap.immutable org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces. -
-
Uses of ImmutableFloatBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableFloatBag Modifier and Type Method Description ImmutableFloatBag
ImmutableBag. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of ImmutableFloatBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableFloatBag Modifier and Type Method Description ImmutableFloatBag
ImmutableFloatBag. newWith(float element)
ImmutableFloatBag
ImmutableFloatBag. newWithAll(FloatIterable elements)
ImmutableFloatBag
ImmutableFloatBag. newWithout(float element)
ImmutableFloatBag
ImmutableFloatBag. newWithoutAll(FloatIterable elements)
ImmutableFloatBag
ImmutableFloatBag. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatBag. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default ImmutableFloatBag
ImmutableFloatBag. selectDuplicates()
Returns all elements of the bag that have more than one occurrence.default ImmutableFloatBag
ImmutableFloatBag. tap(FloatProcedure procedure)
ImmutableFloatBag
FloatBag. toImmutable()
Returns an immutable copy of this bag.ImmutableFloatBag
MutableFloatBag. toImmutable()
Returns an immutable copy of this bag. -
Uses of ImmutableFloatBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return ImmutableFloatBag Modifier and Type Method Description ImmutableFloatBag
ImmutableFloatBagFactory. empty()
ImmutableFloatBag
ImmutableFloatBagFactory. of()
Same asImmutableFloatBagFactory.empty()
.ImmutableFloatBag
ImmutableFloatBagFactory. of(float one)
Same asImmutableFloatBagFactory.with(float)
.ImmutableFloatBag
ImmutableFloatBagFactory. of(float... items)
ImmutableFloatBag
ImmutableFloatBagFactory. ofAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatBag
ImmutableFloatBagFactory. ofAll(FloatIterable items)
ImmutableFloatBag
ImmutableFloatBagFactory. with()
Same asImmutableFloatBagFactory.empty()
.ImmutableFloatBag
ImmutableFloatBagFactory. with(float one)
ImmutableFloatBag
ImmutableFloatBagFactory. with(float... items)
ImmutableFloatBag
ImmutableFloatBagFactory. withAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatBag
ImmutableFloatBagFactory. withAll(FloatIterable items)
-
Uses of ImmutableFloatBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableFloatBag Modifier and Type Method Description ImmutableFloatBag
ImmutableMap. collectFloat(FloatFunction<? super V> floatFunction)
-
Uses of ImmutableFloatBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableFloatBag Modifier and Type Method Description ImmutableFloatBag
ImmutablePrimitiveObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableByteFloatMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableCharFloatMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableDoubleFloatMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatFloatMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableIntFloatMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableLongFloatMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableShortFloatMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableByteFloatMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableCharFloatMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableDoubleFloatMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatFloatMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableIntFloatMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableLongFloatMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableShortFloatMap. select(FloatPredicate predicate)
-
Uses of ImmutableFloatBag in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableFloatBag Modifier and Type Method Description ImmutableFloatBag
AbstractImmutableBag. collectFloat(FloatFunction<? super T> floatFunction)
ImmutableFloatBag
ImmutableEmptyBag. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of ImmutableFloatBag in org.eclipse.collections.impl.bag.immutable.primitive
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement ImmutableFloatBag Modifier and Type Class Description (package private) class
ImmutableFloatEmptyBag
ImmutableFloatEmptyBag is an optimization forImmutableFloatBag
of size 0.(package private) class
ImmutableFloatHashBag
ImmutableFloatHashBag is the non-modifiable equivalent ofFloatHashBag
.(package private) class
ImmutableFloatSingletonBag
ImmutableFloatSingletonBag is an optimization forImmutableFloatBag
of size 1.Fields in org.eclipse.collections.impl.bag.immutable.primitive declared as ImmutableFloatBag Modifier and Type Field Description (package private) static ImmutableFloatBag
ImmutableFloatEmptyBag. INSTANCE
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return ImmutableFloatBag Modifier and Type Method Description ImmutableFloatBag
ImmutableFloatBagFactoryImpl. empty()
ImmutableFloatBag
ImmutableFloatEmptyBag. newWith(float element)
ImmutableFloatBag
ImmutableFloatHashBag. newWith(float element)
ImmutableFloatBag
ImmutableFloatSingletonBag. newWith(float element)
ImmutableFloatBag
ImmutableFloatEmptyBag. newWithAll(FloatIterable elements)
ImmutableFloatBag
ImmutableFloatHashBag. newWithAll(FloatIterable elements)
ImmutableFloatBag
ImmutableFloatSingletonBag. newWithAll(FloatIterable elements)
ImmutableFloatBag
ImmutableFloatEmptyBag. newWithout(float element)
ImmutableFloatBag
ImmutableFloatHashBag. newWithout(float element)
ImmutableFloatBag
ImmutableFloatSingletonBag. newWithout(float element)
ImmutableFloatBag
ImmutableFloatEmptyBag. newWithoutAll(FloatIterable elements)
ImmutableFloatBag
ImmutableFloatHashBag. newWithoutAll(FloatIterable elements)
ImmutableFloatBag
ImmutableFloatSingletonBag. newWithoutAll(FloatIterable elements)
ImmutableFloatBag
ImmutableFloatBagFactoryImpl. of()
ImmutableFloatBag
ImmutableFloatBagFactoryImpl. of(float one)
ImmutableFloatBag
ImmutableFloatBagFactoryImpl. of(float... items)
ImmutableFloatBag
ImmutableFloatBagFactoryImpl. ofAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatBag
ImmutableFloatBagFactoryImpl. ofAll(FloatIterable items)
ImmutableFloatBag
ImmutableFloatEmptyBag. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatHashBag. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatSingletonBag. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatEmptyBag. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatHashBag. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatSingletonBag. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableFloatBag
ImmutableFloatHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableFloatBag
ImmutableFloatSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableFloatBag
ImmutableFloatEmptyBag. toImmutable()
ImmutableFloatBag
ImmutableFloatHashBag. toImmutable()
ImmutableFloatBag
ImmutableFloatSingletonBag. toImmutable()
ImmutableFloatBag
ImmutableFloatBagFactoryImpl. with()
ImmutableFloatBag
ImmutableFloatBagFactoryImpl. with(float one)
ImmutableFloatBag
ImmutableFloatBagFactoryImpl. with(float... items)
ImmutableFloatBag
ImmutableFloatBagFactoryImpl. withAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatBag
ImmutableFloatBagFactoryImpl. withAll(FloatIterable items)
-
Uses of ImmutableFloatBag in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return ImmutableFloatBag Modifier and Type Method Description ImmutableFloatBag
FloatHashBag. toImmutable()
ImmutableFloatBag
SynchronizedFloatBag. toImmutable()
ImmutableFloatBag
UnmodifiableFloatBag. toImmutable()
-
Uses of ImmutableFloatBag in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableFloatBag Modifier and Type Method Description ImmutableFloatBag
AbstractImmutableBiMap. collectFloat(FloatFunction<? super V> floatFunction)
-
Uses of ImmutableFloatBag in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable that return ImmutableFloatBag Modifier and Type Method Description ImmutableFloatBag
AbstractImmutableMap. collectFloat(FloatFunction<? super V> floatFunction)
-
Uses of ImmutableFloatBag in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableFloatBag Modifier and Type Method Description ImmutableFloatBag
ImmutableByteObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableByteObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableByteObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableCharObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableCharObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableCharObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableDoubleObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableDoubleObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableDoubleObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableFloatObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableFloatObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableFloatObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableIntObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableIntObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableIntObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableLongObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableLongObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableLongObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableShortObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableShortObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableShortObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatBag
ImmutableByteFloatEmptyMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableByteFloatHashMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableByteFloatSingletonMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableCharFloatEmptyMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableCharFloatHashMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableCharFloatSingletonMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableDoubleFloatEmptyMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableDoubleFloatHashMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableDoubleFloatSingletonMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatFloatEmptyMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatFloatHashMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatFloatSingletonMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableIntFloatEmptyMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableIntFloatHashMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableIntFloatSingletonMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableLongFloatEmptyMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableLongFloatHashMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableLongFloatSingletonMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableShortFloatEmptyMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableShortFloatHashMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableShortFloatSingletonMap. reject(FloatPredicate predicate)
ImmutableFloatBag
ImmutableByteFloatEmptyMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableByteFloatHashMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableByteFloatSingletonMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableCharFloatEmptyMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableCharFloatHashMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableCharFloatSingletonMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableDoubleFloatEmptyMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableDoubleFloatHashMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableDoubleFloatSingletonMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatFloatEmptyMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatFloatHashMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableFloatFloatSingletonMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableIntFloatEmptyMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableIntFloatHashMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableIntFloatSingletonMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableLongFloatEmptyMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableLongFloatHashMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableLongFloatSingletonMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableShortFloatEmptyMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableShortFloatHashMap. select(FloatPredicate predicate)
ImmutableFloatBag
ImmutableShortFloatSingletonMap. select(FloatPredicate predicate)
-