Uses of Interface
org.eclipse.collections.api.list.primitive.MutableLongList
-
Packages that use MutableLongList 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 MutableLongList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableLongList Modifier and Type Method Description MutableLongListLongIterable. toList()Converts the LongIterable to a new MutableLongList.MutableLongListLongIterable. 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 MutableLongList Modifier and Type Method Description MutableLongListMutableSortedBag. 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 MutableLongList Modifier and Type Method Description MutableLongListMutableLongListFactory. empty()MutableLongListMutableLongListFactory. of()Same asMutableLongListFactory.empty().MutableLongListMutableLongListFactory. of(long... items)Same asMutableLongListFactory.with(long[]).MutableLongListMutableLongListFactory. ofAll(Iterable<Long> iterable)MutableLongListMutableLongListFactory. ofAll(LongStream items)MutableLongListMutableLongListFactory. ofAll(LongIterable items)MutableLongListMutableLongListFactory. with()Same asMutableLongListFactory.empty().MutableLongListMutableLongListFactory. with(long... items)Creates a new list using the passeditemsargument as the backing store.MutableLongListMutableLongListFactory. withAll(Iterable<Long> iterable)MutableLongListMutableLongListFactory. withAll(LongStream items)MutableLongListMutableLongListFactory. withAll(LongIterable items)default MutableLongListMutableLongListFactory. withInitialCapacity(int capacity)Same asMutableLongListFactory.empty().default 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 MutableLongList Modifier and Type Method Description default 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 MutableLongList Modifier and Type Method Description MutableLongListMutableLongList. asSynchronized()MutableLongListMutableLongList. asUnmodifiable()MutableLongListMutableLongList. distinct()default MutableLongListMutableLongList. newEmpty()Creates a new empty mutable version of the same List type.MutableLongListMutableLongList. reject(LongPredicate predicate)default MutableLongListMutableLongList. rejectWithIndex(LongIntPredicate predicate)Returns a new MutableLongList excluding all elements with corresponding indexes matching the specified predicate.MutableLongListMutableLongList. reverseThis()MutableLongListMutableLongList. 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).MutableLongListMutableLongList. 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.MutableLongListMutableLongList. subList(int fromIndex, int toIndex)default MutableLongListMutableLongList. tap(LongProcedure procedure)MutableLongListMutableLongList. toReversed()MutableLongListMutableLongList. with(long element)MutableLongListMutableLongList. withAll(LongIterable elements)MutableLongListMutableLongList. without(long element)MutableLongListMutableLongList. withoutAll(LongIterable elements) -
Uses of MutableLongList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableLongList Modifier and Type Method Description MutableLongListMutableOrderedMap. 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 MutableLongList Modifier and Type Method Description MutableLongListMutableSortedMap. 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 MutableLongList Modifier and Type Method Description MutableLongListMutableSortedSet. collectLong(LongFunction<? super T> longFunction)
-