Uses of Interface
org.eclipse.collections.api.list.primitive.MutableFloatList
-
Packages that use MutableFloatList Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.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. -
-
Uses of MutableFloatList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableFloatList Modifier and Type Method Description MutableFloatListFloatIterable. toList()Converts the FloatIterable to a new MutableFloatList.MutableFloatListFloatIterable. 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 MutableFloatList Modifier and Type Method Description MutableFloatListMutableSortedBag. 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 MutableFloatList Modifier and Type Method Description MutableFloatListMutableFloatListFactory. empty()MutableFloatListMutableFloatListFactory. of()Same asMutableFloatListFactory.empty().MutableFloatListMutableFloatListFactory. of(float... items)MutableFloatListMutableFloatListFactory. ofAll(Iterable<Float> iterable)MutableFloatListMutableFloatListFactory. ofAll(FloatIterable items)MutableFloatListMutableFloatListFactory. with()Same asMutableFloatListFactory.empty().MutableFloatListMutableFloatListFactory. with(float... items)Creates a new list using the passeditemsargument as the backing store.MutableFloatListMutableFloatListFactory. withAll(Iterable<Float> iterable)MutableFloatListMutableFloatListFactory. 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 MutableFloatList Modifier and Type Method Description default 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 MutableFloatList Modifier and Type Method Description MutableFloatListMutableFloatList. asSynchronized()MutableFloatListMutableFloatList. asUnmodifiable()MutableFloatListMutableFloatList. distinct()default MutableFloatListMutableFloatList. newEmpty()Creates a new empty mutable version of the same List type.MutableFloatListMutableFloatList. reject(FloatPredicate predicate)default MutableFloatListMutableFloatList. rejectWithIndex(FloatIntPredicate predicate)Returns a new MutableFloatList excluding all elements with corresponding indexes matching the specified predicate.MutableFloatListMutableFloatList. reverseThis()MutableFloatListMutableFloatList. 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).MutableFloatListMutableFloatList. 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.MutableFloatListMutableFloatList. subList(int fromIndex, int toIndex)default MutableFloatListMutableFloatList. tap(FloatProcedure procedure)MutableFloatListMutableFloatList. toReversed()MutableFloatListMutableFloatList. with(float element)MutableFloatListMutableFloatList. withAll(FloatIterable elements)MutableFloatListMutableFloatList. without(float element)MutableFloatListMutableFloatList. withoutAll(FloatIterable elements) -
Uses of MutableFloatList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableFloatList Modifier and Type Method Description MutableFloatListMutableOrderedMap. 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 MutableFloatList Modifier and Type Method Description MutableFloatListMutableSortedMap. 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 MutableFloatList Modifier and Type Method Description MutableFloatListMutableSortedSet. collectFloat(FloatFunction<? super T> floatFunction)
-