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.
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 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 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().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 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) -
Uses of MutableLongList in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableLongListModifier and TypeMethodDescriptionImmutableLongEmptyBag.toList()ImmutableLongHashBag.toList()ImmutableLongSingletonBag.toList()ImmutableLongEmptyBag.toSortedList()ImmutableLongHashBag.toSortedList()ImmutableLongSingletonBag.toSortedList() -
Uses of MutableLongList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableLongListModifier and TypeMethodDescriptionAbstractMutableSortedBag.collectLong(LongFunction<? super T> longFunction) SynchronizedSortedBag.collectLong(LongFunction<? super T> longFunction) UnmodifiableSortedBag.collectLong(LongFunction<? super T> longFunction) -
Uses of MutableLongList in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableLongListModifier and TypeMethodDescriptionAbstractSynchronizedLongCollection.toList()AbstractUnmodifiableLongCollection.toList()AbstractSynchronizedLongCollection.toSortedList()AbstractUnmodifiableLongCollection.toSortedList() -
Uses of MutableLongList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableLongListModifier and TypeMethodDescriptionAbstractLazyLongIterable.toList()CollectLongIterable.toList()LazyLongIterableAdapter.toList()ReverseLongIterable.toList()SelectLongIterable.toList()AbstractLazyLongIterable.toSortedList()LazyLongIterableAdapter.toSortedList() -
Uses of MutableLongList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableLongListModifier and TypeMethodDescriptionImmutableLongArrayList.toList()ImmutableLongEmptyList.toList()ImmutableLongSingletonList.toList()ImmutableLongArrayList.toSortedList()ImmutableLongEmptyList.toSortedList()ImmutableLongSingletonList.toSortedList() -
Uses of MutableLongList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableLongListModifier and TypeMethodDescriptionMultiReaderFastList.collectLong(LongFunction<? super T> longFunction) MultiReaderFastList.UntouchableMutableList.collectLong(LongFunction<? super T> longFunction) SynchronizedMutableList.collectLong(LongFunction<? super T> longFunction) UnmodifiableMutableList.collectLong(LongFunction<? super T> longFunction) -
Uses of MutableLongList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableLongListModifier and TypeClassDescriptionclassLongArrayList is similar to FastList, and is memory-optimized for long primitives.classA synchronized view of aMutableLongList.classThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Fields in org.eclipse.collections.impl.list.mutable.primitive declared as MutableLongListMethods in org.eclipse.collections.impl.list.mutable.primitive that return MutableLongListModifier and TypeMethodDescriptionLongArrayList.asSynchronized()SynchronizedLongList.asSynchronized()UnmodifiableLongList.asSynchronized()LongArrayList.asUnmodifiable()SynchronizedLongList.asUnmodifiable()UnmodifiableLongList.asUnmodifiable()LongArrayList.distinct()SynchronizedLongList.distinct()UnmodifiableLongList.distinct()MutableLongListFactoryImpl.empty()private MutableLongListSynchronizedLongList.getMutableLongList()private MutableLongListUnmodifiableLongList.getMutableLongList()SynchronizedLongList.newEmpty()UnmodifiableLongList.newEmpty()MutableLongListFactoryImpl.of()MutableLongListFactoryImpl.of(long... items) MutableLongListFactoryImpl.ofAll(LongStream items) MutableLongListFactoryImpl.ofAll(LongIterable items) SynchronizedLongList.reject(LongPredicate predicate) UnmodifiableLongList.reject(LongPredicate predicate) SynchronizedLongList.rejectWithIndex(LongIntPredicate predicate) Returns a new MutableLongList excluding all elements with corresponding indexes matching the specified predicate.UnmodifiableLongList.rejectWithIndex(LongIntPredicate predicate) Returns a new MutableLongList excluding all elements with corresponding indexes matching the specified predicate.SynchronizedLongList.reverseThis()UnmodifiableLongList.reverseThis()SynchronizedLongList.select(LongPredicate predicate) UnmodifiableLongList.select(LongPredicate predicate) SynchronizedLongList.selectWithIndex(LongIntPredicate predicate) Returns a new MutableLongList including all elements with corresponding indexes matching the specified predicate.UnmodifiableLongList.selectWithIndex(LongIntPredicate predicate) Returns a new MutableLongList including all elements with corresponding indexes matching the specified predicate.SynchronizedLongList.shuffleThis()SynchronizedLongList.shuffleThis(Random rnd) UnmodifiableLongList.shuffleThis()SynchronizedLongList.sortThis()SynchronizedLongList.sortThis(LongComparator comparator) UnmodifiableLongList.sortThis()<T> MutableLongListSynchronizedLongList.sortThisBy(LongToObjectFunction<T> function) <T> MutableLongListSynchronizedLongList.sortThisBy(LongToObjectFunction<T> function, Comparator<? super T> comparator) LongArrayList.subList(int fromIndex, int toIndex) SynchronizedLongList.subList(int fromIndex, int toIndex) UnmodifiableLongList.subList(int fromIndex, int toIndex) SynchronizedLongList.toReversed()UnmodifiableLongList.toReversed()MutableLongListFactoryImpl.with()MutableLongListFactoryImpl.with(long... items) Creates a new list using the passeditemsargument as the backing store.MutableLongListFactoryImpl.withAll(LongStream items) MutableLongListFactoryImpl.withAll(LongIterable items) MutableLongListFactoryImpl.withInitialCapacity(int capacity) Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableLongListModifierConstructorDescriptionBoxedMutableLongList(MutableLongList delegate) SynchronizedLongList(MutableLongList list, Object newLock) -
Uses of MutableLongList in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive that return MutableLongList -
Uses of MutableLongList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableLongListModifier and TypeMethodDescriptionImmutableByteLongEmptyMap.toList()ImmutableByteLongHashMap.toList()ImmutableByteLongSingletonMap.toList()ImmutableCharLongEmptyMap.toList()ImmutableCharLongHashMap.toList()ImmutableCharLongSingletonMap.toList()ImmutableDoubleLongEmptyMap.toList()ImmutableDoubleLongHashMap.toList()ImmutableDoubleLongSingletonMap.toList()ImmutableFloatLongEmptyMap.toList()ImmutableFloatLongHashMap.toList()ImmutableFloatLongSingletonMap.toList()ImmutableIntLongEmptyMap.toList()ImmutableIntLongHashMap.toList()ImmutableIntLongSingletonMap.toList()ImmutableLongLongEmptyMap.toList()ImmutableLongLongHashMap.toList()ImmutableLongLongSingletonMap.toList()ImmutableObjectLongEmptyMap.toList()ImmutableObjectLongHashMap.toList()ImmutableObjectLongSingletonMap.toList()ImmutableShortLongEmptyMap.toList()ImmutableShortLongHashMap.toList()ImmutableShortLongSingletonMap.toList()ImmutableByteLongEmptyMap.toSortedList()ImmutableByteLongHashMap.toSortedList()ImmutableByteLongSingletonMap.toSortedList()ImmutableCharLongEmptyMap.toSortedList()ImmutableCharLongHashMap.toSortedList()ImmutableCharLongSingletonMap.toSortedList()ImmutableDoubleLongEmptyMap.toSortedList()ImmutableDoubleLongHashMap.toSortedList()ImmutableDoubleLongSingletonMap.toSortedList()ImmutableFloatLongEmptyMap.toSortedList()ImmutableFloatLongHashMap.toSortedList()ImmutableFloatLongSingletonMap.toSortedList()ImmutableIntLongEmptyMap.toSortedList()ImmutableIntLongHashMap.toSortedList()ImmutableIntLongSingletonMap.toSortedList()ImmutableLongLongEmptyMap.toSortedList()ImmutableLongLongHashMap.toSortedList()ImmutableLongLongSingletonMap.toSortedList()ImmutableObjectLongEmptyMap.toSortedList()ImmutableObjectLongHashMap.toSortedList()ImmutableObjectLongSingletonMap.toSortedList()ImmutableShortLongEmptyMap.toSortedList()ImmutableShortLongHashMap.toSortedList()ImmutableShortLongSingletonMap.toSortedList() -
Uses of MutableLongList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableLongListModifier and TypeMethodDescriptionAbstractMutableLongKeySet.toList()AbstractMutableLongValuesMap.AbstractLongValuesCollection.toList()LongBooleanHashMap.KeysView.toList()ObjectLongHashMap.toList()ObjectLongHashMap.ValuesCollection.toList()ObjectLongHashMapWithHashingStrategy.toList()ObjectLongHashMapWithHashingStrategy.ValuesCollection.toList()SynchronizedByteLongMap.toList()SynchronizedCharLongMap.toList()SynchronizedDoubleLongMap.toList()SynchronizedFloatLongMap.toList()SynchronizedIntLongMap.toList()SynchronizedLongLongMap.toList()SynchronizedObjectLongMap.toList()SynchronizedShortLongMap.toList()UnmodifiableByteLongMap.toList()UnmodifiableCharLongMap.toList()UnmodifiableDoubleLongMap.toList()UnmodifiableFloatLongMap.toList()UnmodifiableIntLongMap.toList()UnmodifiableLongLongMap.toList()UnmodifiableObjectLongMap.toList()UnmodifiableShortLongMap.toList()AbstractMutableLongKeySet.toSortedList()AbstractMutableLongValuesMap.AbstractLongValuesCollection.toSortedList()ObjectLongHashMap.toSortedList()ObjectLongHashMap.ValuesCollection.toSortedList()ObjectLongHashMapWithHashingStrategy.toSortedList()ObjectLongHashMapWithHashingStrategy.ValuesCollection.toSortedList()SynchronizedByteLongMap.toSortedList()SynchronizedCharLongMap.toSortedList()SynchronizedDoubleLongMap.toSortedList()SynchronizedFloatLongMap.toSortedList()SynchronizedIntLongMap.toSortedList()SynchronizedLongLongMap.toSortedList()SynchronizedObjectLongMap.toSortedList()SynchronizedShortLongMap.toSortedList()UnmodifiableByteLongMap.toSortedList()UnmodifiableCharLongMap.toSortedList()UnmodifiableDoubleLongMap.toSortedList()UnmodifiableFloatLongMap.toSortedList()UnmodifiableIntLongMap.toSortedList()UnmodifiableLongLongMap.toSortedList()UnmodifiableObjectLongMap.toSortedList()UnmodifiableShortLongMap.toSortedList() -
Uses of MutableLongList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableLongListModifier and TypeMethodDescriptionOrderedMapAdapter.collectLong(LongFunction<? super V> longFunction) UnmodifiableMutableOrderedMap.collectLong(LongFunction<? super V> longFunction) -
Uses of MutableLongList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableLongListModifier and TypeMethodDescriptionAbstractMutableSortedMap.collectLong(LongFunction<? super V> longFunction) SynchronizedSortedMap.collectLong(LongFunction<? super V> longFunction) UnmodifiableTreeMap.collectLong(LongFunction<? super V> longFunction) -
Uses of MutableLongList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableLongListModifier and TypeMethodDescriptionAbstractLongIterable.toList()SynchronizedLongIterable.toList()AbstractLongIterable.toSortedList()SynchronizedLongIterable.toSortedList() -
Uses of MutableLongList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableLongListModifier and TypeMethodDescriptionImmutableLongEmptySet.toList()ImmutableLongSingletonSet.toList()ImmutableLongEmptySet.toSortedList()ImmutableLongSingletonSet.toSortedList() -
Uses of MutableLongList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableLongListModifier and TypeMethodDescriptionSortedSetAdapter.collectLong(LongFunction<? super T> longFunction) SynchronizedSortedSet.collectLong(LongFunction<? super T> longFunction) TreeSortedSet.collectLong(LongFunction<? super T> longFunction) UnmodifiableSortedSet.collectLong(LongFunction<? super T> longFunction) -
Uses of MutableLongList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableLongListModifier and TypeMethodDescriptionImmutableLongEmptyStack.toList()ImmutableLongSingletonStack.toList()ImmutableLongArrayStack.toSortedList()ImmutableLongEmptyStack.toSortedList()ImmutableLongSingletonStack.toSortedList() -
Uses of MutableLongList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableLongListModifier and TypeMethodDescriptionSynchronizedLongStack.toList()UnmodifiableLongStack.toList()LongArrayStack.toSortedList()SynchronizedLongStack.toSortedList()UnmodifiableLongStack.toSortedList() -
Uses of MutableLongList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableLongList -
Uses of MutableLongList in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return MutableLongListModifier and TypeMethodDescriptionstatic MutableLongListPrimitiveStreams.mLongList(LongStream stream) -
Uses of MutableLongList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableLongListModifier and TypeMethodDescriptionstatic <T> MutableLongListArrayIterate.collectLong(T[] objectArray, LongFunction<? super T> longFunction) static <T> MutableLongListArrayListIterate.collectLong(ArrayList<T> list, LongFunction<? super T> longFunction) static <T> MutableLongListListIterate.collectLong(List<T> list, LongFunction<? super T> longFunction) -
Uses of MutableLongList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableLongListModifier and TypeMethodDescriptionstatic <T> MutableLongListRandomAccessListIterate.collectLong(List<T> list, LongFunction<? super T> longFunction)