Uses of Interface
org.eclipse.collections.api.list.primitive.MutableFloatList
Packages that use MutableFloatList
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for SortedBag API.
This package contains factory API for creating immutable primitive list instances.
This package contains interfaces for list API which enhance the performance and functionality of
List
.This package contains mutable and immutable primitive list API.
This package contains interfaces for map API which enhance the performance and functionality of
Map
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for sorted set API.
This package contains implementations of the immutable primitive bag interfaces.
This package contains implementations of
MutableSortedBag
.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the
MutableList
interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of
MutableSortedSet
.This package contains implementations of the immutable primitive stack interfaces.
This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableFloatList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableFloatListModifier and TypeMethodDescriptionFloatIterable.toList()
Converts the FloatIterable to a new MutableFloatList.FloatIterable.toSortedList()
default MutableFloatList
FloatIterable.toSortedList
(FloatComparator comparator) Converts the collection to a MutableFloatList implementation sorted using the provided comparator.default <T> MutableFloatList
FloatIterable.toSortedListBy
(FloatToObjectFunction<T> function) Converts the collection to a MutableFloatListImplementation sorted based on the natural order of the key returned byfunction
.default <T> MutableFloatList
FloatIterable.toSortedListBy
(FloatToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableFloatList implementation, which is sorted based on the key returned byfunction
using the providedcomparator
. -
Uses of MutableFloatList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableFloatListModifier and TypeMethodDescriptionMutableSortedBag.collectFloat
(FloatFunction<? super T> floatFunction) -
Uses of MutableFloatList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return MutableFloatListModifier and TypeMethodDescriptionMutableFloatListFactory.empty()
MutableFloatListFactory.of()
Same asMutableFloatListFactory.empty()
.MutableFloatListFactory.of
(float... items) MutableFloatListFactory.ofAll
(FloatIterable items) MutableFloatListFactory.with()
Same asMutableFloatListFactory.empty()
.MutableFloatListFactory.with
(float... items) Creates a new list using the passeditems
argument as the backing store.MutableFloatListFactory.withAll
(FloatIterable items) default MutableFloatList
MutableFloatListFactory.withInitialCapacity
(int capacity) Same asMutableFloatListFactory.empty()
.default MutableFloatList
MutableFloatListFactory.wrapCopy
(float... array) Creates a new list by first copying the array passed in. -
Uses of MutableFloatList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableFloatListModifier and TypeMethodDescriptiondefault MutableFloatList
MutableList.collectFloat
(FloatFunction<? super T> floatFunction) -
Uses of MutableFloatList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return MutableFloatListModifier and TypeMethodDescriptionMutableFloatList.asSynchronized()
MutableFloatList.asUnmodifiable()
MutableFloatList.distinct()
default MutableFloatList
MutableFloatList.newEmpty()
Creates a new empty mutable version of the same List type.MutableFloatList.reject
(FloatPredicate predicate) default MutableFloatList
MutableFloatList.rejectWithIndex
(FloatIntPredicate predicate) Returns a new MutableFloatList excluding all elements with corresponding indexes matching the specified predicate.MutableFloatList.reverseThis()
MutableFloatList.select
(FloatPredicate predicate) default MutableFloatList
MutableFloatList.selectWithIndex
(FloatIntPredicate predicate) Returns a new MutableFloatList including all elements with corresponding indexes matching the specified predicate.default MutableFloatList
MutableFloatList.shuffleThis()
Randomly permutes this list mutating its contents and returns the same list (this).default MutableFloatList
MutableFloatList.shuffleThis
(Random rnd) Randomly permutes this list mutating its contents and returns the same list (this).MutableFloatList.sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).default MutableFloatList
MutableFloatList.sortThis
(FloatComparator comparator) Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableFloatList
MutableFloatList.sortThisBy
(FloatToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction
.default <T> MutableFloatList
MutableFloatList.sortThisBy
(FloatToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunction
using the providedcomparator
.MutableFloatList.subList
(int fromIndex, int toIndex) default MutableFloatList
MutableFloatList.tap
(FloatProcedure procedure) MutableFloatList.toReversed()
MutableFloatList.with
(float element) MutableFloatList.withAll
(FloatIterable elements) MutableFloatList.without
(float element) MutableFloatList.withoutAll
(FloatIterable elements) -
Uses of MutableFloatList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableFloatListModifier and TypeMethodDescriptionMutableOrderedMap.collectFloat
(FloatFunction<? super V> floatFunction) -
Uses of MutableFloatList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableFloatListModifier and TypeMethodDescriptionMutableSortedMap.collectFloat
(FloatFunction<? super V> floatFunction) -
Uses of MutableFloatList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableFloatListModifier and TypeMethodDescriptionMutableSortedSet.collectFloat
(FloatFunction<? super T> floatFunction) -
Uses of MutableFloatList in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableFloatListModifier and TypeMethodDescriptionImmutableFloatEmptyBag.toList()
ImmutableFloatHashBag.toList()
ImmutableFloatSingletonBag.toList()
ImmutableFloatEmptyBag.toSortedList()
ImmutableFloatHashBag.toSortedList()
ImmutableFloatSingletonBag.toSortedList()
-
Uses of MutableFloatList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableFloatListModifier and TypeMethodDescriptionAbstractMutableSortedBag.collectFloat
(FloatFunction<? super T> floatFunction) SynchronizedSortedBag.collectFloat
(FloatFunction<? super T> floatFunction) UnmodifiableSortedBag.collectFloat
(FloatFunction<? super T> floatFunction) -
Uses of MutableFloatList in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableFloatListModifier and TypeMethodDescriptionAbstractSynchronizedFloatCollection.toList()
AbstractUnmodifiableFloatCollection.toList()
AbstractSynchronizedFloatCollection.toSortedList()
AbstractUnmodifiableFloatCollection.toSortedList()
-
Uses of MutableFloatList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableFloatListModifier and TypeMethodDescriptionAbstractLazyFloatIterable.toList()
CollectFloatIterable.toList()
LazyFloatIterableAdapter.toList()
ReverseFloatIterable.toList()
SelectFloatIterable.toList()
AbstractLazyFloatIterable.toSortedList()
LazyFloatIterableAdapter.toSortedList()
-
Uses of MutableFloatList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableFloatListModifier and TypeMethodDescriptionImmutableFloatArrayList.toList()
ImmutableFloatEmptyList.toList()
ImmutableFloatSingletonList.toList()
ImmutableFloatArrayList.toSortedList()
ImmutableFloatEmptyList.toSortedList()
ImmutableFloatSingletonList.toSortedList()
-
Uses of MutableFloatList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableFloatListModifier and TypeMethodDescriptionMultiReaderFastList.collectFloat
(FloatFunction<? super T> floatFunction) MultiReaderFastList.UntouchableMutableList.collectFloat
(FloatFunction<? super T> floatFunction) SynchronizedMutableList.collectFloat
(FloatFunction<? super T> floatFunction) UnmodifiableMutableList.collectFloat
(FloatFunction<? super T> floatFunction) -
Uses of MutableFloatList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableFloatListModifier and TypeClassDescriptionclass
FloatArrayList is similar to FastList, and is memory-optimized for float primitives.class
A synchronized view of aMutableFloatList
.class
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive that return MutableFloatListModifier and TypeMethodDescriptionFloatArrayList.asSynchronized()
SynchronizedFloatList.asSynchronized()
UnmodifiableFloatList.asSynchronized()
FloatArrayList.asUnmodifiable()
SynchronizedFloatList.asUnmodifiable()
UnmodifiableFloatList.asUnmodifiable()
FloatArrayList.distinct()
SynchronizedFloatList.distinct()
UnmodifiableFloatList.distinct()
MutableFloatListFactoryImpl.empty()
private MutableFloatList
SynchronizedFloatList.getMutableFloatList()
private MutableFloatList
UnmodifiableFloatList.getMutableFloatList()
SynchronizedFloatList.newEmpty()
UnmodifiableFloatList.newEmpty()
MutableFloatListFactoryImpl.of()
MutableFloatListFactoryImpl.of
(float... items) MutableFloatListFactoryImpl.ofAll
(FloatIterable items) SynchronizedFloatList.reject
(FloatPredicate predicate) UnmodifiableFloatList.reject
(FloatPredicate predicate) SynchronizedFloatList.rejectWithIndex
(FloatIntPredicate predicate) Returns a new MutableFloatList excluding all elements with corresponding indexes matching the specified predicate.UnmodifiableFloatList.rejectWithIndex
(FloatIntPredicate predicate) Returns a new MutableFloatList excluding all elements with corresponding indexes matching the specified predicate.SynchronizedFloatList.reverseThis()
UnmodifiableFloatList.reverseThis()
SynchronizedFloatList.select
(FloatPredicate predicate) UnmodifiableFloatList.select
(FloatPredicate predicate) SynchronizedFloatList.selectWithIndex
(FloatIntPredicate predicate) Returns a new MutableFloatList including all elements with corresponding indexes matching the specified predicate.UnmodifiableFloatList.selectWithIndex
(FloatIntPredicate predicate) Returns a new MutableFloatList including all elements with corresponding indexes matching the specified predicate.SynchronizedFloatList.shuffleThis()
SynchronizedFloatList.shuffleThis
(Random rnd) UnmodifiableFloatList.shuffleThis()
SynchronizedFloatList.sortThis()
SynchronizedFloatList.sortThis
(FloatComparator comparator) UnmodifiableFloatList.sortThis()
<T> MutableFloatList
SynchronizedFloatList.sortThisBy
(FloatToObjectFunction<T> function) <T> MutableFloatList
SynchronizedFloatList.sortThisBy
(FloatToObjectFunction<T> function, Comparator<? super T> comparator) FloatArrayList.subList
(int fromIndex, int toIndex) SynchronizedFloatList.subList
(int fromIndex, int toIndex) UnmodifiableFloatList.subList
(int fromIndex, int toIndex) SynchronizedFloatList.toReversed()
UnmodifiableFloatList.toReversed()
MutableFloatListFactoryImpl.with()
MutableFloatListFactoryImpl.with
(float... items) Creates a new list using the passeditems
argument as the backing store.MutableFloatListFactoryImpl.withAll
(FloatIterable items) MutableFloatListFactoryImpl.withInitialCapacity
(int capacity) Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableFloatList -
Uses of MutableFloatList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableFloatListModifier and TypeMethodDescriptionImmutableByteFloatEmptyMap.toList()
ImmutableByteFloatHashMap.toList()
ImmutableByteFloatSingletonMap.toList()
ImmutableCharFloatEmptyMap.toList()
ImmutableCharFloatHashMap.toList()
ImmutableCharFloatSingletonMap.toList()
ImmutableDoubleFloatEmptyMap.toList()
ImmutableDoubleFloatHashMap.toList()
ImmutableDoubleFloatSingletonMap.toList()
ImmutableFloatFloatEmptyMap.toList()
ImmutableFloatFloatHashMap.toList()
ImmutableFloatFloatSingletonMap.toList()
ImmutableIntFloatEmptyMap.toList()
ImmutableIntFloatHashMap.toList()
ImmutableIntFloatSingletonMap.toList()
ImmutableLongFloatEmptyMap.toList()
ImmutableLongFloatHashMap.toList()
ImmutableLongFloatSingletonMap.toList()
ImmutableObjectFloatEmptyMap.toList()
ImmutableObjectFloatHashMap.toList()
ImmutableObjectFloatSingletonMap.toList()
ImmutableShortFloatEmptyMap.toList()
ImmutableShortFloatHashMap.toList()
ImmutableShortFloatSingletonMap.toList()
ImmutableByteFloatEmptyMap.toSortedList()
ImmutableByteFloatHashMap.toSortedList()
ImmutableByteFloatSingletonMap.toSortedList()
ImmutableCharFloatEmptyMap.toSortedList()
ImmutableCharFloatHashMap.toSortedList()
ImmutableCharFloatSingletonMap.toSortedList()
ImmutableDoubleFloatEmptyMap.toSortedList()
ImmutableDoubleFloatHashMap.toSortedList()
ImmutableDoubleFloatSingletonMap.toSortedList()
ImmutableFloatFloatEmptyMap.toSortedList()
ImmutableFloatFloatHashMap.toSortedList()
ImmutableFloatFloatSingletonMap.toSortedList()
ImmutableIntFloatEmptyMap.toSortedList()
ImmutableIntFloatHashMap.toSortedList()
ImmutableIntFloatSingletonMap.toSortedList()
ImmutableLongFloatEmptyMap.toSortedList()
ImmutableLongFloatHashMap.toSortedList()
ImmutableLongFloatSingletonMap.toSortedList()
ImmutableObjectFloatEmptyMap.toSortedList()
ImmutableObjectFloatHashMap.toSortedList()
ImmutableObjectFloatSingletonMap.toSortedList()
ImmutableShortFloatEmptyMap.toSortedList()
ImmutableShortFloatHashMap.toSortedList()
ImmutableShortFloatSingletonMap.toSortedList()
-
Uses of MutableFloatList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableFloatListModifier and TypeMethodDescriptionAbstractMutableFloatKeySet.toList()
AbstractMutableFloatValuesMap.AbstractFloatValuesCollection.toList()
FloatBooleanHashMap.KeysView.toList()
ObjectFloatHashMap.toList()
ObjectFloatHashMap.ValuesCollection.toList()
ObjectFloatHashMapWithHashingStrategy.toList()
ObjectFloatHashMapWithHashingStrategy.ValuesCollection.toList()
SynchronizedByteFloatMap.toList()
SynchronizedCharFloatMap.toList()
SynchronizedDoubleFloatMap.toList()
SynchronizedFloatFloatMap.toList()
SynchronizedIntFloatMap.toList()
SynchronizedLongFloatMap.toList()
SynchronizedObjectFloatMap.toList()
SynchronizedShortFloatMap.toList()
UnmodifiableByteFloatMap.toList()
UnmodifiableCharFloatMap.toList()
UnmodifiableDoubleFloatMap.toList()
UnmodifiableFloatFloatMap.toList()
UnmodifiableIntFloatMap.toList()
UnmodifiableLongFloatMap.toList()
UnmodifiableObjectFloatMap.toList()
UnmodifiableShortFloatMap.toList()
AbstractMutableFloatKeySet.toSortedList()
AbstractMutableFloatValuesMap.AbstractFloatValuesCollection.toSortedList()
ObjectFloatHashMap.toSortedList()
ObjectFloatHashMap.ValuesCollection.toSortedList()
ObjectFloatHashMapWithHashingStrategy.toSortedList()
ObjectFloatHashMapWithHashingStrategy.ValuesCollection.toSortedList()
SynchronizedByteFloatMap.toSortedList()
SynchronizedCharFloatMap.toSortedList()
SynchronizedDoubleFloatMap.toSortedList()
SynchronizedFloatFloatMap.toSortedList()
SynchronizedIntFloatMap.toSortedList()
SynchronizedLongFloatMap.toSortedList()
SynchronizedObjectFloatMap.toSortedList()
SynchronizedShortFloatMap.toSortedList()
UnmodifiableByteFloatMap.toSortedList()
UnmodifiableCharFloatMap.toSortedList()
UnmodifiableDoubleFloatMap.toSortedList()
UnmodifiableFloatFloatMap.toSortedList()
UnmodifiableIntFloatMap.toSortedList()
UnmodifiableLongFloatMap.toSortedList()
UnmodifiableObjectFloatMap.toSortedList()
UnmodifiableShortFloatMap.toSortedList()
-
Uses of MutableFloatList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableFloatListModifier and TypeMethodDescriptionOrderedMapAdapter.collectFloat
(FloatFunction<? super V> floatFunction) UnmodifiableMutableOrderedMap.collectFloat
(FloatFunction<? super V> floatFunction) -
Uses of MutableFloatList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableFloatListModifier and TypeMethodDescriptionAbstractMutableSortedMap.collectFloat
(FloatFunction<? super V> floatFunction) SynchronizedSortedMap.collectFloat
(FloatFunction<? super V> floatFunction) UnmodifiableTreeMap.collectFloat
(FloatFunction<? super V> floatFunction) -
Uses of MutableFloatList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableFloatListModifier and TypeMethodDescriptionAbstractFloatIterable.toList()
SynchronizedFloatIterable.toList()
AbstractFloatIterable.toSortedList()
SynchronizedFloatIterable.toSortedList()
-
Uses of MutableFloatList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableFloatListModifier and TypeMethodDescriptionImmutableFloatEmptySet.toList()
ImmutableFloatSingletonSet.toList()
ImmutableFloatEmptySet.toSortedList()
ImmutableFloatSingletonSet.toSortedList()
-
Uses of MutableFloatList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableFloatListModifier and TypeMethodDescriptionSortedSetAdapter.collectFloat
(FloatFunction<? super T> floatFunction) SynchronizedSortedSet.collectFloat
(FloatFunction<? super T> floatFunction) TreeSortedSet.collectFloat
(FloatFunction<? super T> floatFunction) UnmodifiableSortedSet.collectFloat
(FloatFunction<? super T> floatFunction) -
Uses of MutableFloatList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableFloatListModifier and TypeMethodDescriptionImmutableFloatEmptyStack.toList()
ImmutableFloatSingletonStack.toList()
ImmutableFloatArrayStack.toSortedList()
ImmutableFloatEmptyStack.toSortedList()
ImmutableFloatSingletonStack.toSortedList()
-
Uses of MutableFloatList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableFloatListModifier and TypeMethodDescriptionSynchronizedFloatStack.toList()
UnmodifiableFloatStack.toList()
FloatArrayStack.toSortedList()
SynchronizedFloatStack.toSortedList()
UnmodifiableFloatStack.toSortedList()
-
Uses of MutableFloatList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableFloatList -
Uses of MutableFloatList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableFloatListModifier and TypeMethodDescriptionstatic <T> MutableFloatList
ArrayIterate.collectFloat
(T[] objectArray, FloatFunction<? super T> floatFunction) static <T> MutableFloatList
ArrayListIterate.collectFloat
(ArrayList<T> list, FloatFunction<? super T> floatFunction) static <T> MutableFloatList
ListIterate.collectFloat
(List<T> list, FloatFunction<? super T> floatFunction) -
Uses of MutableFloatList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableFloatListModifier and TypeMethodDescriptionstatic <T> MutableFloatList
RandomAccessListIterate.collectFloat
(List<T> list, FloatFunction<? super T> floatFunction)