Uses of Interface
org.eclipse.collections.api.list.primitive.MutableByteList
-
Packages that use MutableByteList 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 MutableByteList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableByteList Modifier and Type Method Description MutableByteListByteIterable. toList()Converts the ByteIterable to a new MutableByteList.MutableByteListByteIterable. 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 MutableByteList Modifier and Type Method Description MutableByteListMutableSortedBag. 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 MutableByteList Modifier and Type Method Description MutableByteListMutableByteListFactory. empty()MutableByteListMutableByteListFactory. of()Same asMutableByteListFactory.empty().MutableByteListMutableByteListFactory. of(byte... items)Same asMutableByteListFactory.with(byte[]).MutableByteListMutableByteListFactory. ofAll(Iterable<Byte> iterable)MutableByteListMutableByteListFactory. ofAll(ByteIterable items)MutableByteListMutableByteListFactory. with()Same asMutableByteListFactory.empty().MutableByteListMutableByteListFactory. with(byte... items)Creates a new list using the passeditemsargument as the backing store.MutableByteListMutableByteListFactory. withAll(Iterable<Byte> iterable)MutableByteListMutableByteListFactory. withAll(ByteIterable items)default MutableByteListMutableByteListFactory. withInitialCapacity(int capacity)Same asMutableByteListFactory.empty().default 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 MutableByteList Modifier and Type Method Description default 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 MutableByteList Modifier and Type Method Description MutableByteListMutableByteList. asSynchronized()MutableByteListMutableByteList. asUnmodifiable()MutableByteListMutableByteList. distinct()default MutableByteListMutableByteList. newEmpty()Creates a new empty mutable version of the same List type.MutableByteListMutableByteList. reject(BytePredicate predicate)default MutableByteListMutableByteList. rejectWithIndex(ByteIntPredicate predicate)Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.MutableByteListMutableByteList. reverseThis()MutableByteListMutableByteList. 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).MutableByteListMutableByteList. 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.MutableByteListMutableByteList. subList(int fromIndex, int toIndex)default MutableByteListMutableByteList. tap(ByteProcedure procedure)MutableByteListMutableByteList. toReversed()MutableByteListMutableByteList. with(byte element)MutableByteListMutableByteList. withAll(ByteIterable elements)MutableByteListMutableByteList. without(byte element)MutableByteListMutableByteList. withoutAll(ByteIterable elements) -
Uses of MutableByteList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableByteList Modifier and Type Method Description MutableByteListMutableOrderedMap. 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 MutableByteList Modifier and Type Method Description MutableByteListMutableSortedMap. 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 MutableByteList Modifier and Type Method Description MutableByteListMutableSortedSet. collectByte(ByteFunction<? super T> byteFunction)
-