Uses of Interface
org.eclipse.collections.api.list.primitive.ImmutableFloatList
-
Packages that use ImmutableFloatList Package Description org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.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.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
. -
-
Uses of ImmutableFloatList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
ImmutableSortedBag. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of ImmutableFloatList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
ImmutableFloatListFactory. empty()
ImmutableFloatList
ImmutableFloatListFactory. of()
Same asImmutableFloatListFactory.empty()
.ImmutableFloatList
ImmutableFloatListFactory. of(float one)
ImmutableFloatList
ImmutableFloatListFactory. of(float... items)
ImmutableFloatList
ImmutableFloatListFactory. ofAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatList
ImmutableFloatListFactory. ofAll(FloatIterable items)
ImmutableFloatList
ImmutableFloatListFactory. with()
Same asImmutableFloatListFactory.empty()
.ImmutableFloatList
ImmutableFloatListFactory. with(float one)
ImmutableFloatList
ImmutableFloatListFactory. with(float... items)
ImmutableFloatList
ImmutableFloatListFactory. withAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatList
ImmutableFloatListFactory. withAll(FloatIterable items)
-
Uses of ImmutableFloatList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
ImmutableList. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of ImmutableFloatList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
ImmutableFloatList. distinct()
ImmutableFloatList
ImmutableFloatList. newWith(float element)
ImmutableFloatList
ImmutableFloatList. newWithAll(FloatIterable elements)
ImmutableFloatList
ImmutableFloatList. newWithout(float element)
ImmutableFloatList
ImmutableFloatList. newWithoutAll(FloatIterable elements)
ImmutableFloatList
ImmutableFloatList. reject(FloatPredicate predicate)
default ImmutableFloatList
ImmutableFloatList. rejectWithIndex(FloatIntPredicate predicate)
Returns a new ImmutableFloatList excluding all elements with corresponding indexes matching the specified predicate.ImmutableFloatList
ImmutableFloatList. select(FloatPredicate predicate)
default ImmutableFloatList
ImmutableFloatList. selectWithIndex(FloatIntPredicate predicate)
Returns a new ImmutableFloatList including all elements with corresponding indexes matching the specified predicate.ImmutableFloatList
ImmutableFloatList. subList(int fromIndex, int toIndex)
default ImmutableFloatList
ImmutableFloatList. tap(FloatProcedure procedure)
ImmutableFloatList
FloatList. toImmutable()
Returns an immutable copy of this list.ImmutableFloatList
MutableFloatList. toImmutable()
Returns an immutable copy of this list.ImmutableFloatList
ImmutableFloatList. toReversed()
-
Uses of ImmutableFloatList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
ImmutableOrderedMap. collectFloat(FloatFunction<? super V> floatFunction)
-
Uses of ImmutableFloatList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
ImmutableSortedMap. collectFloat(FloatFunction<? super V> floatFunction)
-
Uses of ImmutableFloatList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
ImmutableSortedSet. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of ImmutableFloatList in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
AbstractImmutableSortedBag. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of ImmutableFloatList in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
AbstractImmutableList. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of ImmutableFloatList in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ImmutableFloatList Modifier and Type Class Description (package private) class
ImmutableFloatArrayList
ImmutableFloatArrayList is the non-modifiable equivalent ofFloatArrayList
.(package private) class
ImmutableFloatEmptyList
ImmutableFloatEmptyList is an optimization forImmutableFloatList
of size 0.(package private) class
ImmutableFloatSingletonList
ImmutableFloatSingletonList is an optimization forImmutableFloatList
of size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableFloatList Modifier and Type Field Description (package private) static ImmutableFloatList
ImmutableFloatEmptyList. INSTANCE
Methods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
ImmutableFloatArrayList. distinct()
ImmutableFloatList
ImmutableFloatEmptyList. distinct()
ImmutableFloatList
ImmutableFloatSingletonList. distinct()
ImmutableFloatList
ImmutableFloatListFactoryImpl. empty()
ImmutableFloatList
ImmutableFloatArrayList. newWith(float element)
ImmutableFloatList
ImmutableFloatEmptyList. newWith(float element)
ImmutableFloatList
ImmutableFloatSingletonList. newWith(float element)
ImmutableFloatList
ImmutableFloatArrayList. newWithAll(FloatIterable elements)
ImmutableFloatList
ImmutableFloatEmptyList. newWithAll(FloatIterable elements)
ImmutableFloatList
ImmutableFloatSingletonList. newWithAll(FloatIterable elements)
ImmutableFloatList
ImmutableFloatArrayList. newWithout(float element)
ImmutableFloatList
ImmutableFloatEmptyList. newWithout(float element)
ImmutableFloatList
ImmutableFloatSingletonList. newWithout(float element)
ImmutableFloatList
ImmutableFloatArrayList. newWithoutAll(FloatIterable elements)
ImmutableFloatList
ImmutableFloatEmptyList. newWithoutAll(FloatIterable elements)
ImmutableFloatList
ImmutableFloatSingletonList. newWithoutAll(FloatIterable elements)
ImmutableFloatList
ImmutableFloatListFactoryImpl. of()
ImmutableFloatList
ImmutableFloatListFactoryImpl. of(float one)
ImmutableFloatList
ImmutableFloatListFactoryImpl. of(float... items)
ImmutableFloatList
ImmutableFloatListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatList
ImmutableFloatListFactoryImpl. ofAll(FloatIterable items)
ImmutableFloatList
ImmutableFloatArrayList. reject(FloatPredicate predicate)
ImmutableFloatList
ImmutableFloatEmptyList. reject(FloatPredicate predicate)
ImmutableFloatList
ImmutableFloatSingletonList. reject(FloatPredicate predicate)
ImmutableFloatList
ImmutableFloatArrayList. select(FloatPredicate predicate)
ImmutableFloatList
ImmutableFloatEmptyList. select(FloatPredicate predicate)
ImmutableFloatList
ImmutableFloatSingletonList. select(FloatPredicate predicate)
ImmutableFloatList
ImmutableFloatArrayList. subList(int fromIndex, int toIndex)
ImmutableFloatList
ImmutableFloatEmptyList. subList(int fromIndex, int toIndex)
ImmutableFloatList
ImmutableFloatSingletonList. subList(int fromIndex, int toIndex)
ImmutableFloatList
ImmutableFloatArrayList. toImmutable()
ImmutableFloatList
ImmutableFloatEmptyList. toImmutable()
ImmutableFloatList
ImmutableFloatSingletonList. toImmutable()
ImmutableFloatList
ImmutableFloatListFactoryImpl. with()
ImmutableFloatList
ImmutableFloatListFactoryImpl. with(float one)
ImmutableFloatList
ImmutableFloatListFactoryImpl. with(float... items)
ImmutableFloatList
ImmutableFloatListFactoryImpl. withAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatList
ImmutableFloatListFactoryImpl. withAll(FloatIterable items)
-
Uses of ImmutableFloatList in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
FloatArrayList. toImmutable()
ImmutableFloatList
SynchronizedFloatList. toImmutable()
ImmutableFloatList
UnmodifiableFloatList. toImmutable()
-
Uses of ImmutableFloatList in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
AbstractImmutableSortedMap. collectFloat(FloatFunction<? super V> floatFunction)
-
Uses of ImmutableFloatList in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatList
AbstractImmutableSortedSet. collectFloat(FloatFunction<? super T> floatFunction)
-