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
MapThis 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 MutableFloatListFloatIterable.toSortedList(FloatComparator comparator) Converts the collection to a MutableFloatList implementation sorted using the provided comparator.default <T> MutableFloatListFloatIterable.toSortedListBy(FloatToObjectFunction<T> function) Converts the collection to a MutableFloatListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableFloatListFloatIterable.toSortedListBy(FloatToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableFloatList implementation, which is sorted based on the key returned byfunctionusing 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 passeditemsargument as the backing store.MutableFloatListFactory.withAll(FloatIterable items) default MutableFloatListMutableFloatListFactory.withInitialCapacity(int capacity) Same asMutableFloatListFactory.empty().default MutableFloatListMutableFloatListFactory.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 MutableFloatListMutableList.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 MutableFloatListMutableFloatList.newEmpty()Creates a new empty mutable version of the same List type.MutableFloatList.reject(FloatPredicate predicate) default MutableFloatListMutableFloatList.rejectWithIndex(FloatIntPredicate predicate) Returns a new MutableFloatList excluding all elements with corresponding indexes matching the specified predicate.MutableFloatList.reverseThis()MutableFloatList.select(FloatPredicate predicate) default MutableFloatListMutableFloatList.selectWithIndex(FloatIntPredicate predicate) Returns a new MutableFloatList including all elements with corresponding indexes matching the specified predicate.default MutableFloatListMutableFloatList.shuffleThis()Randomly permutes this list mutating its contents and returns the same list (this).default MutableFloatListMutableFloatList.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 MutableFloatListMutableFloatList.sortThis(FloatComparator comparator) Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableFloatListMutableFloatList.sortThisBy(FloatToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableFloatListMutableFloatList.sortThisBy(FloatToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator.MutableFloatList.subList(int fromIndex, int toIndex) default MutableFloatListMutableFloatList.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 TypeClassDescriptionclassFloatArrayList is similar to FastList, and is memory-optimized for float primitives.classA synchronized view of aMutableFloatList.classThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Fields in org.eclipse.collections.impl.list.mutable.primitive declared as MutableFloatListMethods 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 MutableFloatListSynchronizedFloatList.getMutableFloatList()private MutableFloatListUnmodifiableFloatList.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> MutableFloatListSynchronizedFloatList.sortThisBy(FloatToObjectFunction<T> function) <T> MutableFloatListSynchronizedFloatList.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 passeditemsargument 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 MutableFloatListModifierConstructorDescriptionBoxedMutableFloatList(MutableFloatList delegate) SynchronizedFloatList(MutableFloatList list, Object newLock) -
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> MutableFloatListArrayIterate.collectFloat(T[] objectArray, FloatFunction<? super T> floatFunction) static <T> MutableFloatListArrayListIterate.collectFloat(ArrayList<T> list, FloatFunction<? super T> floatFunction) static <T> MutableFloatListListIterate.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> MutableFloatListRandomAccessListIterate.collectFloat(List<T> list, FloatFunction<? super T> floatFunction)