Uses of Interface
org.eclipse.collections.api.list.primitive.MutableByteList
Packages that use MutableByteList
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 MutableByteList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableByteListModifier and TypeMethodDescriptionByteIterable.toList()Converts the ByteIterable to a new MutableByteList.ByteIterable.toSortedList()default MutableByteListByteIterable.toSortedList(ByteComparator comparator) Converts the collection to a MutableByteList implementation sorted using the provided comparator.default <T> MutableByteListByteIterable.toSortedListBy(ByteToObjectFunction<T> function) Converts the collection to a MutableByteListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableByteListByteIterable.toSortedListBy(ByteToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableByteList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of MutableByteList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableByteListModifier and TypeMethodDescriptionMutableSortedBag.collectByte(ByteFunction<? super T> byteFunction) -
Uses of MutableByteList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return MutableByteListModifier and TypeMethodDescriptionMutableByteListFactory.empty()MutableByteListFactory.of()Same asMutableByteListFactory.empty().MutableByteListFactory.of(byte... items) Same asMutableByteListFactory.with(byte[]).MutableByteListFactory.ofAll(ByteIterable items) MutableByteListFactory.with()Same asMutableByteListFactory.empty().MutableByteListFactory.with(byte... items) Creates a new list using the passeditemsargument as the backing store.MutableByteListFactory.withAll(ByteIterable items) default MutableByteListMutableByteListFactory.withInitialCapacity(int capacity) Same asMutableByteListFactory.empty(). but takes in an initial capacitydefault MutableByteListMutableByteListFactory.wrapCopy(byte... array) Creates a new list by first copying the array passed in. -
Uses of MutableByteList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableByteListModifier and TypeMethodDescriptiondefault MutableByteListMutableList.collectByte(ByteFunction<? super T> byteFunction) -
Uses of MutableByteList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return MutableByteListModifier and TypeMethodDescriptionMutableByteList.asSynchronized()MutableByteList.asUnmodifiable()MutableByteList.distinct()default MutableByteListMutableByteList.newEmpty()Creates a new empty mutable version of the same List type.MutableByteList.reject(BytePredicate predicate) default MutableByteListMutableByteList.rejectWithIndex(ByteIntPredicate predicate) Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.MutableByteList.reverseThis()MutableByteList.select(BytePredicate predicate) default MutableByteListMutableByteList.selectWithIndex(ByteIntPredicate predicate) Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate.default MutableByteListMutableByteList.shuffleThis()Randomly permutes this list mutating its contents and returns the same list (this).default MutableByteListMutableByteList.shuffleThis(Random rnd) Randomly permutes this list mutating its contents and returns the same list (this).MutableByteList.sortThis()Sorts this list mutating its contents and returns the same mutable list (this).default MutableByteListMutableByteList.sortThis(ByteComparator comparator) Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableByteListMutableByteList.sortThisBy(ByteToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableByteListMutableByteList.sortThisBy(ByteToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator.MutableByteList.subList(int fromIndex, int toIndex) default MutableByteListMutableByteList.tap(ByteProcedure procedure) MutableByteList.toReversed()MutableByteList.with(byte element) MutableByteList.withAll(ByteIterable elements) MutableByteList.without(byte element) MutableByteList.withoutAll(ByteIterable elements) -
Uses of MutableByteList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableByteListModifier and TypeMethodDescriptionMutableOrderedMap.collectByte(ByteFunction<? super V> byteFunction) -
Uses of MutableByteList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableByteListModifier and TypeMethodDescriptionMutableSortedMap.collectByte(ByteFunction<? super V> byteFunction) -
Uses of MutableByteList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableByteListModifier and TypeMethodDescriptionMutableSortedSet.collectByte(ByteFunction<? super T> byteFunction)