Uses of Interface
org.eclipse.collections.api.list.primitive.MutableLongList
Packages that use MutableLongList
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.
-
Uses of MutableLongList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableLongListModifier and TypeMethodDescriptionLongIterable.toList()Converts the LongIterable to a new MutableLongList.LongIterable.toSortedList()default MutableLongListLongIterable.toSortedList(LongComparator comparator) Converts the collection to a MutableLongList implementation sorted using the provided comparator.default <T> MutableLongListLongIterable.toSortedListBy(LongToObjectFunction<T> function) Converts the collection to a MutableLongListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableLongListLongIterable.toSortedListBy(LongToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableLongList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of MutableLongList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableLongListModifier and TypeMethodDescriptionMutableSortedBag.collectLong(LongFunction<? super T> longFunction) -
Uses of MutableLongList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return MutableLongListModifier and TypeMethodDescriptionMutableLongListFactory.empty()MutableLongListFactory.of()Same asMutableLongListFactory.empty().MutableLongListFactory.of(long... items) Same asMutableLongListFactory.with(long[]).MutableLongListFactory.ofAll(LongStream items) MutableLongListFactory.ofAll(LongIterable items) MutableLongListFactory.with()Same asMutableLongListFactory.empty().MutableLongListFactory.with(long... items) Creates a new list using the passeditemsargument as the backing store.MutableLongListFactory.withAll(LongStream items) MutableLongListFactory.withAll(LongIterable items) default MutableLongListMutableLongListFactory.withInitialCapacity(int capacity) Same asMutableLongListFactory.empty(). but takes in an initial capacitydefault MutableLongListMutableLongListFactory.wrapCopy(long... array) Creates a new list by first copying the array passed in. -
Uses of MutableLongList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableLongListModifier and TypeMethodDescriptiondefault MutableLongListMutableList.collectLong(LongFunction<? super T> longFunction) -
Uses of MutableLongList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return MutableLongListModifier and TypeMethodDescriptionMutableLongList.asSynchronized()MutableLongList.asUnmodifiable()MutableLongList.distinct()default MutableLongListMutableLongList.newEmpty()Creates a new empty mutable version of the same List type.MutableLongList.reject(LongPredicate predicate) default MutableLongListMutableLongList.rejectWithIndex(LongIntPredicate predicate) Returns a new MutableLongList excluding all elements with corresponding indexes matching the specified predicate.MutableLongList.reverseThis()MutableLongList.select(LongPredicate predicate) default MutableLongListMutableLongList.selectWithIndex(LongIntPredicate predicate) Returns a new MutableLongList including all elements with corresponding indexes matching the specified predicate.default MutableLongListMutableLongList.shuffleThis()Randomly permutes this list mutating its contents and returns the same list (this).default MutableLongListMutableLongList.shuffleThis(Random rnd) Randomly permutes this list mutating its contents and returns the same list (this).MutableLongList.sortThis()Sorts this list mutating its contents and returns the same mutable list (this).default MutableLongListMutableLongList.sortThis(LongComparator comparator) Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableLongListMutableLongList.sortThisBy(LongToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableLongListMutableLongList.sortThisBy(LongToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator.MutableLongList.subList(int fromIndex, int toIndex) default MutableLongListMutableLongList.tap(LongProcedure procedure) MutableLongList.toReversed()MutableLongList.with(long element) MutableLongList.withAll(LongIterable elements) MutableLongList.without(long element) MutableLongList.withoutAll(LongIterable elements) -
Uses of MutableLongList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableLongListModifier and TypeMethodDescriptionMutableOrderedMap.collectLong(LongFunction<? super V> longFunction) -
Uses of MutableLongList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableLongListModifier and TypeMethodDescriptionMutableSortedMap.collectLong(LongFunction<? super V> longFunction) -
Uses of MutableLongList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableLongListModifier and TypeMethodDescriptionMutableSortedSet.collectLong(LongFunction<? super T> longFunction)