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 ofMaporg.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 theImmutableListinterface.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.ordered.immutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.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 ImmutableFloatListImmutableSortedBag. 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 ImmutableFloatListImmutableFloatListFactory. empty()ImmutableFloatListImmutableFloatListFactory. of()Same asImmutableFloatListFactory.empty().ImmutableFloatListImmutableFloatListFactory. of(float one)ImmutableFloatListImmutableFloatListFactory. of(float... items)ImmutableFloatListImmutableFloatListFactory. ofAll(java.lang.Iterable<java.lang.Float> iterable)ImmutableFloatListImmutableFloatListFactory. ofAll(FloatIterable items)ImmutableFloatListImmutableFloatListFactory. with()Same asImmutableFloatListFactory.empty().ImmutableFloatListImmutableFloatListFactory. with(float one)ImmutableFloatListImmutableFloatListFactory. with(float... items)ImmutableFloatListImmutableFloatListFactory. withAll(java.lang.Iterable<java.lang.Float> iterable)ImmutableFloatListImmutableFloatListFactory. 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 ImmutableFloatListImmutableList. 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 ImmutableFloatListImmutableFloatList. distinct()ImmutableFloatListImmutableFloatList. newWith(float element)ImmutableFloatListImmutableFloatList. newWithAll(FloatIterable elements)ImmutableFloatListImmutableFloatList. newWithout(float element)ImmutableFloatListImmutableFloatList. newWithoutAll(FloatIterable elements)ImmutableFloatListImmutableFloatList. reject(FloatPredicate predicate)default ImmutableFloatListImmutableFloatList. rejectWithIndex(FloatIntPredicate predicate)Returns a new ImmutableFloatList excluding all elements with corresponding indexes matching the specified predicate.ImmutableFloatListImmutableFloatList. select(FloatPredicate predicate)default ImmutableFloatListImmutableFloatList. selectWithIndex(FloatIntPredicate predicate)Returns a new ImmutableFloatList including all elements with corresponding indexes matching the specified predicate.ImmutableFloatListImmutableFloatList. subList(int fromIndex, int toIndex)default ImmutableFloatListImmutableFloatList. tap(FloatProcedure procedure)ImmutableFloatListFloatList. toImmutable()Returns an immutable copy of this list.ImmutableFloatListMutableFloatList. toImmutable()Returns an immutable copy of this list.ImmutableFloatListImmutableFloatList. 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 ImmutableFloatListImmutableOrderedMap. 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 ImmutableFloatListImmutableSortedMap. 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 ImmutableFloatListImmutableSortedSet. 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 ImmutableFloatListAbstractImmutableSortedBag. 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 ImmutableFloatListAbstractImmutableList. 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) classImmutableFloatArrayListImmutableFloatArrayList is the non-modifiable equivalent ofFloatArrayList.(package private) classImmutableFloatEmptyListImmutableFloatEmptyList is an optimization forImmutableFloatListof size 0.(package private) classImmutableFloatSingletonListImmutableFloatSingletonList is an optimization forImmutableFloatListof size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableFloatList Modifier and Type Field Description (package private) static ImmutableFloatListImmutableFloatEmptyList. INSTANCEMethods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatListImmutableFloatArrayList. distinct()ImmutableFloatListImmutableFloatEmptyList. distinct()ImmutableFloatListImmutableFloatSingletonList. distinct()ImmutableFloatListImmutableFloatListFactoryImpl. empty()ImmutableFloatListImmutableFloatArrayList. newWith(float element)ImmutableFloatListImmutableFloatEmptyList. newWith(float element)ImmutableFloatListImmutableFloatSingletonList. newWith(float element)ImmutableFloatListImmutableFloatArrayList. newWithAll(FloatIterable elements)ImmutableFloatListImmutableFloatEmptyList. newWithAll(FloatIterable elements)ImmutableFloatListImmutableFloatSingletonList. newWithAll(FloatIterable elements)ImmutableFloatListImmutableFloatArrayList. newWithout(float element)ImmutableFloatListImmutableFloatEmptyList. newWithout(float element)ImmutableFloatListImmutableFloatSingletonList. newWithout(float element)ImmutableFloatListImmutableFloatArrayList. newWithoutAll(FloatIterable elements)ImmutableFloatListImmutableFloatEmptyList. newWithoutAll(FloatIterable elements)ImmutableFloatListImmutableFloatSingletonList. newWithoutAll(FloatIterable elements)ImmutableFloatListImmutableFloatListFactoryImpl. of()ImmutableFloatListImmutableFloatListFactoryImpl. of(float one)ImmutableFloatListImmutableFloatListFactoryImpl. of(float... items)ImmutableFloatListImmutableFloatListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Float> iterable)ImmutableFloatListImmutableFloatListFactoryImpl. ofAll(FloatIterable items)ImmutableFloatListImmutableFloatArrayList. reject(FloatPredicate predicate)ImmutableFloatListImmutableFloatEmptyList. reject(FloatPredicate predicate)ImmutableFloatListImmutableFloatSingletonList. reject(FloatPredicate predicate)ImmutableFloatListImmutableFloatArrayList. select(FloatPredicate predicate)ImmutableFloatListImmutableFloatEmptyList. select(FloatPredicate predicate)ImmutableFloatListImmutableFloatSingletonList. select(FloatPredicate predicate)ImmutableFloatListImmutableFloatArrayList. subList(int fromIndex, int toIndex)ImmutableFloatListImmutableFloatEmptyList. subList(int fromIndex, int toIndex)ImmutableFloatListImmutableFloatSingletonList. subList(int fromIndex, int toIndex)ImmutableFloatListImmutableFloatArrayList. toImmutable()ImmutableFloatListImmutableFloatEmptyList. toImmutable()ImmutableFloatListImmutableFloatSingletonList. toImmutable()ImmutableFloatListImmutableFloatListFactoryImpl. with()ImmutableFloatListImmutableFloatListFactoryImpl. with(float one)ImmutableFloatListImmutableFloatListFactoryImpl. with(float... items)ImmutableFloatListImmutableFloatListFactoryImpl. withAll(java.lang.Iterable<java.lang.Float> iterable)ImmutableFloatListImmutableFloatListFactoryImpl. 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 ImmutableFloatListFloatArrayList. toImmutable()ImmutableFloatListSynchronizedFloatList. toImmutable()ImmutableFloatListUnmodifiableFloatList. toImmutable() -
Uses of ImmutableFloatList in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable that return ImmutableFloatList Modifier and Type Method Description ImmutableFloatListImmutableOrderedMapAdapter. collectFloat(FloatFunction<? super V> floatFunction) -
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 ImmutableFloatListAbstractImmutableSortedMap. 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 ImmutableFloatListAbstractImmutableSortedSet. collectFloat(FloatFunction<? super T> floatFunction)
-