Uses of Interface
org.eclipse.collections.api.list.primitive.FloatList
-
Packages that use FloatList Package Description org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.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.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.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.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive -
-
Uses of FloatList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return FloatList Modifier and Type Method Description FloatList
SortedBag. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return FloatList Modifier and Type Method Description FloatList
ListIterable. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatList in org.eclipse.collections.api.list.primitive
Subinterfaces of FloatList in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
ImmutableFloatList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
MutableFloatList
This file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive that return FloatList Modifier and Type Method Description FloatList
FloatList. distinct()
FloatList
FloatList. reject(FloatPredicate predicate)
default FloatList
FloatList. rejectWithIndex(FloatIntPredicate predicate)
Returns a new FloatList excluding all elements with corresponding indexes matching the specified predicate.FloatList
FloatList. select(FloatPredicate predicate)
default FloatList
FloatList. selectWithIndex(FloatIntPredicate predicate)
Returns a new FloatList including all elements with corresponding indexes matching the specified predicate.FloatList
FloatList. subList(int fromIndex, int toIndex)
default FloatList
FloatList. tap(FloatProcedure procedure)
FloatList
FloatList. toReversed()
Methods in org.eclipse.collections.api.list.primitive with parameters of type FloatList Modifier and Type Method Description double
FloatList. dotProduct(FloatList list)
default void
FloatList. forEachInBoth(FloatList other, FloatFloatProcedure procedure)
This method iterates over two CharList instances of the same size together using the specified CharCharProcedure. -
Uses of FloatList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return FloatList Modifier and Type Method Description FloatList
OrderedMap. collectFloat(FloatFunction<? super V> floatFunction)
-
Uses of FloatList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return FloatList Modifier and Type Method Description FloatList
SortedMapIterable. collectFloat(FloatFunction<? super V> floatFunction)
-
Uses of FloatList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return FloatList Modifier and Type Method Description FloatList
SortedSetIterable. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatList in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return FloatList Modifier and Type Method Description FloatList
FloatStack. peek(int count)
Returns FloatList of the number of elements specified by the count, beginning with the top of the stack.FloatList
MutableFloatStack. pop(int count)
Removes and returns a FloatList of the number of elements specified by the count, beginning with the top of the stack. -
Uses of FloatList in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as FloatList Modifier and Type Field Description private FloatList
ReverseFloatIterable. adapted
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type FloatList Modifier and Type Method Description static ReverseFloatIterable
ReverseFloatIterable. adapt(FloatList floatList)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type FloatList Constructor Description ReverseFloatIterable(FloatList newAdapted)
-
Uses of FloatList in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement FloatList 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.Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type FloatList Modifier and Type Method Description double
ImmutableFloatArrayList. dotProduct(FloatList list)
double
ImmutableFloatEmptyList. dotProduct(FloatList list)
double
ImmutableFloatSingletonList. dotProduct(FloatList list)
-
Uses of FloatList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement FloatList Modifier and Type Class Description class
FloatArrayList
FloatArrayList is similar to FastList, and is memory-optimized for float primitives.class
SynchronizedFloatList
A synchronized view of aMutableFloatList
.class
UnmodifiableFloatList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type FloatList Modifier and Type Method Description double
FloatArrayList. dotProduct(FloatList list)
double
SynchronizedFloatList. dotProduct(FloatList list)
double
UnmodifiableFloatList. dotProduct(FloatList list)
void
SynchronizedFloatList. forEachInBoth(FloatList other, FloatFloatProcedure procedure)
-
Uses of FloatList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return FloatList Modifier and Type Method Description FloatList
ImmutableFloatEmptyStack. peek(int count)
FloatList
ImmutableFloatSingletonStack. peek(int count)
-
Uses of FloatList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return FloatList Modifier and Type Method Description FloatList
SynchronizedFloatStack. peek(int count)
FloatList
UnmodifiableFloatStack. peek(int count)
FloatList
FloatArrayStack. pop(int count)
FloatList
SynchronizedFloatStack. pop(int count)
FloatList
UnmodifiableFloatStack. pop(int count)
-
Uses of FloatList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return FloatList Modifier and Type Method Description FloatList
AbstractFloatStack. peek(int count)
-