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.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
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, java.util.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(java.lang.Iterable<java.lang.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(java.lang.Iterable<java.lang.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(java.util.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, java.util.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) -
Uses of MutableByteList in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteListImmutableByteEmptyBag. toList()MutableByteListImmutableByteHashBag. toList()MutableByteListImmutableByteSingletonBag. toList()MutableByteListImmutableByteEmptyBag. toSortedList()MutableByteListImmutableByteHashBag. toSortedList()MutableByteListImmutableByteSingletonBag. toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableByteList Modifier and Type Method Description MutableByteListAbstractMutableSortedBag. collectByte(ByteFunction<? super T> byteFunction)MutableByteListSynchronizedSortedBag. collectByte(ByteFunction<? super T> byteFunction)MutableByteListUnmodifiableSortedBag. collectByte(ByteFunction<? super T> byteFunction) -
Uses of MutableByteList in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteListAbstractSynchronizedByteCollection. toList()MutableByteListAbstractUnmodifiableByteCollection. toList()MutableByteListAbstractSynchronizedByteCollection. toSortedList()MutableByteListAbstractUnmodifiableByteCollection. toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableByteList Modifier and Type Method Description MutableByteListAbstractLazyByteIterable. toList()MutableByteListCollectByteIterable. toList()MutableByteListLazyByteIterableAdapter. toList()MutableByteListReverseByteIterable. toList()MutableByteListSelectByteIterable. toList()MutableByteListAbstractLazyByteIterable. toSortedList()MutableByteListLazyByteIterableAdapter. toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteListImmutableByteArrayList. toList()MutableByteListImmutableByteEmptyList. toList()MutableByteListImmutableByteSingletonList. toList()MutableByteListImmutableByteArrayList. toSortedList()MutableByteListImmutableByteEmptyList. toSortedList()MutableByteListImmutableByteSingletonList. toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableByteList Modifier and Type Method Description MutableByteListMultiReaderFastList. collectByte(ByteFunction<? super T> byteFunction)MutableByteListMultiReaderFastList.UntouchableMutableList. collectByte(ByteFunction<? super T> byteFunction)MutableByteListSynchronizedMutableList. collectByte(ByteFunction<? super T> byteFunction)MutableByteListUnmodifiableMutableList. collectByte(ByteFunction<? super T> byteFunction) -
Uses of MutableByteList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableByteList Modifier and Type Class Description classByteArrayListByteArrayList is similar to FastList, and is memory-optimized for byte primitives.classSynchronizedByteListA synchronized view of aMutableByteList.classUnmodifiableByteListThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Fields in org.eclipse.collections.impl.list.mutable.primitive declared as MutableByteList Modifier and Type Field Description private MutableByteListBoxedMutableByteList. delegateMethods in org.eclipse.collections.impl.list.mutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteListByteArrayList. asSynchronized()MutableByteListSynchronizedByteList. asSynchronized()MutableByteListUnmodifiableByteList. asSynchronized()MutableByteListByteArrayList. asUnmodifiable()MutableByteListSynchronizedByteList. asUnmodifiable()MutableByteListUnmodifiableByteList. asUnmodifiable()MutableByteListByteArrayList. distinct()MutableByteListSynchronizedByteList. distinct()MutableByteListUnmodifiableByteList. distinct()MutableByteListMutableByteListFactoryImpl. empty()private MutableByteListSynchronizedByteList. getMutableByteList()private MutableByteListUnmodifiableByteList. getMutableByteList()MutableByteListSynchronizedByteList. newEmpty()MutableByteListUnmodifiableByteList. newEmpty()MutableByteListMutableByteListFactoryImpl. of()MutableByteListMutableByteListFactoryImpl. of(byte... items)MutableByteListMutableByteListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Byte> iterable)MutableByteListMutableByteListFactoryImpl. ofAll(ByteIterable items)MutableByteListSynchronizedByteList. reject(BytePredicate predicate)MutableByteListUnmodifiableByteList. reject(BytePredicate predicate)MutableByteListSynchronizedByteList. rejectWithIndex(ByteIntPredicate predicate)Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.MutableByteListUnmodifiableByteList. rejectWithIndex(ByteIntPredicate predicate)Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.MutableByteListSynchronizedByteList. reverseThis()MutableByteListUnmodifiableByteList. reverseThis()MutableByteListSynchronizedByteList. select(BytePredicate predicate)MutableByteListUnmodifiableByteList. select(BytePredicate predicate)MutableByteListSynchronizedByteList. selectWithIndex(ByteIntPredicate predicate)Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate.MutableByteListUnmodifiableByteList. selectWithIndex(ByteIntPredicate predicate)Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate.MutableByteListSynchronizedByteList. shuffleThis()MutableByteListSynchronizedByteList. shuffleThis(java.util.Random rnd)MutableByteListUnmodifiableByteList. shuffleThis()MutableByteListSynchronizedByteList. sortThis()MutableByteListSynchronizedByteList. sortThis(ByteComparator comparator)MutableByteListUnmodifiableByteList. sortThis()<T> MutableByteListSynchronizedByteList. sortThisBy(ByteToObjectFunction<T> function)<T> MutableByteListSynchronizedByteList. sortThisBy(ByteToObjectFunction<T> function, java.util.Comparator<? super T> comparator)MutableByteListByteArrayList. subList(int fromIndex, int toIndex)MutableByteListSynchronizedByteList. subList(int fromIndex, int toIndex)MutableByteListUnmodifiableByteList. subList(int fromIndex, int toIndex)MutableByteListSynchronizedByteList. toReversed()MutableByteListUnmodifiableByteList. toReversed()MutableByteListMutableByteListFactoryImpl. with()MutableByteListMutableByteListFactoryImpl. with(byte... items)Creates a new list using the passeditemsargument as the backing store.MutableByteListMutableByteListFactoryImpl. withAll(java.lang.Iterable<java.lang.Byte> iterable)MutableByteListMutableByteListFactoryImpl. withAll(ByteIterable items)MutableByteListMutableByteListFactoryImpl. withInitialCapacity(int capacity)Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableByteList Constructor Description BoxedMutableByteList(MutableByteList delegate)SynchronizedByteList(MutableByteList list)SynchronizedByteList(MutableByteList list, java.lang.Object newLock)UnmodifiableByteList(MutableByteList list) -
Uses of MutableByteList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteListImmutableByteByteEmptyMap. toList()MutableByteListImmutableByteByteHashMap. toList()MutableByteListImmutableByteByteSingletonMap. toList()MutableByteListImmutableCharByteEmptyMap. toList()MutableByteListImmutableCharByteHashMap. toList()MutableByteListImmutableCharByteSingletonMap. toList()MutableByteListImmutableDoubleByteEmptyMap. toList()MutableByteListImmutableDoubleByteHashMap. toList()MutableByteListImmutableDoubleByteSingletonMap. toList()MutableByteListImmutableFloatByteEmptyMap. toList()MutableByteListImmutableFloatByteHashMap. toList()MutableByteListImmutableFloatByteSingletonMap. toList()MutableByteListImmutableIntByteEmptyMap. toList()MutableByteListImmutableIntByteHashMap. toList()MutableByteListImmutableIntByteSingletonMap. toList()MutableByteListImmutableLongByteEmptyMap. toList()MutableByteListImmutableLongByteHashMap. toList()MutableByteListImmutableLongByteSingletonMap. toList()MutableByteListImmutableObjectByteEmptyMap. toList()MutableByteListImmutableObjectByteHashMap. toList()MutableByteListImmutableObjectByteSingletonMap. toList()MutableByteListImmutableShortByteEmptyMap. toList()MutableByteListImmutableShortByteHashMap. toList()MutableByteListImmutableShortByteSingletonMap. toList()MutableByteListImmutableByteByteEmptyMap. toSortedList()MutableByteListImmutableByteByteHashMap. toSortedList()MutableByteListImmutableByteByteSingletonMap. toSortedList()MutableByteListImmutableCharByteEmptyMap. toSortedList()MutableByteListImmutableCharByteHashMap. toSortedList()MutableByteListImmutableCharByteSingletonMap. toSortedList()MutableByteListImmutableDoubleByteEmptyMap. toSortedList()MutableByteListImmutableDoubleByteHashMap. toSortedList()MutableByteListImmutableDoubleByteSingletonMap. toSortedList()MutableByteListImmutableFloatByteEmptyMap. toSortedList()MutableByteListImmutableFloatByteHashMap. toSortedList()MutableByteListImmutableFloatByteSingletonMap. toSortedList()MutableByteListImmutableIntByteEmptyMap. toSortedList()MutableByteListImmutableIntByteHashMap. toSortedList()MutableByteListImmutableIntByteSingletonMap. toSortedList()MutableByteListImmutableLongByteEmptyMap. toSortedList()MutableByteListImmutableLongByteHashMap. toSortedList()MutableByteListImmutableLongByteSingletonMap. toSortedList()MutableByteListImmutableObjectByteEmptyMap. toSortedList()MutableByteListImmutableObjectByteHashMap. toSortedList()MutableByteListImmutableObjectByteSingletonMap. toSortedList()MutableByteListImmutableShortByteEmptyMap. toSortedList()MutableByteListImmutableShortByteHashMap. toSortedList()MutableByteListImmutableShortByteSingletonMap. toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteListAbstractMutableByteKeySet. toList()MutableByteListAbstractMutableByteValuesMap.AbstractByteValuesCollection. toList()MutableByteListByteBooleanHashMap.KeysView. toList()MutableByteListObjectByteHashMap. toList()MutableByteListObjectByteHashMap.ValuesCollection. toList()MutableByteListObjectByteHashMapWithHashingStrategy. toList()MutableByteListObjectByteHashMapWithHashingStrategy.ValuesCollection. toList()MutableByteListSynchronizedByteByteMap. toList()MutableByteListSynchronizedCharByteMap. toList()MutableByteListSynchronizedDoubleByteMap. toList()MutableByteListSynchronizedFloatByteMap. toList()MutableByteListSynchronizedIntByteMap. toList()MutableByteListSynchronizedLongByteMap. toList()MutableByteListSynchronizedObjectByteMap. toList()MutableByteListSynchronizedShortByteMap. toList()MutableByteListUnmodifiableByteByteMap. toList()MutableByteListUnmodifiableCharByteMap. toList()MutableByteListUnmodifiableDoubleByteMap. toList()MutableByteListUnmodifiableFloatByteMap. toList()MutableByteListUnmodifiableIntByteMap. toList()MutableByteListUnmodifiableLongByteMap. toList()MutableByteListUnmodifiableObjectByteMap. toList()MutableByteListUnmodifiableShortByteMap. toList()MutableByteListAbstractMutableByteKeySet. toSortedList()MutableByteListAbstractMutableByteValuesMap.AbstractByteValuesCollection. toSortedList()MutableByteListObjectByteHashMap. toSortedList()MutableByteListObjectByteHashMap.ValuesCollection. toSortedList()MutableByteListObjectByteHashMapWithHashingStrategy. toSortedList()MutableByteListObjectByteHashMapWithHashingStrategy.ValuesCollection. toSortedList()MutableByteListSynchronizedByteByteMap. toSortedList()MutableByteListSynchronizedCharByteMap. toSortedList()MutableByteListSynchronizedDoubleByteMap. toSortedList()MutableByteListSynchronizedFloatByteMap. toSortedList()MutableByteListSynchronizedIntByteMap. toSortedList()MutableByteListSynchronizedLongByteMap. toSortedList()MutableByteListSynchronizedObjectByteMap. toSortedList()MutableByteListSynchronizedShortByteMap. toSortedList()MutableByteListUnmodifiableByteByteMap. toSortedList()MutableByteListUnmodifiableCharByteMap. toSortedList()MutableByteListUnmodifiableDoubleByteMap. toSortedList()MutableByteListUnmodifiableFloatByteMap. toSortedList()MutableByteListUnmodifiableIntByteMap. toSortedList()MutableByteListUnmodifiableLongByteMap. toSortedList()MutableByteListUnmodifiableObjectByteMap. toSortedList()MutableByteListUnmodifiableShortByteMap. toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableByteList Modifier and Type Method Description MutableByteListOrderedMapAdapter. collectByte(ByteFunction<? super V> byteFunction)MutableByteListUnmodifiableMutableOrderedMap. collectByte(ByteFunction<? super V> byteFunction) -
Uses of MutableByteList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableByteList Modifier and Type Method Description MutableByteListAbstractMutableSortedMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteListSynchronizedSortedMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteListUnmodifiableTreeMap. collectByte(ByteFunction<? super V> byteFunction) -
Uses of MutableByteList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableByteList Modifier and Type Method Description MutableByteListAbstractByteIterable. toList()MutableByteListSynchronizedByteIterable. toList()MutableByteListAbstractByteIterable. toSortedList()MutableByteListSynchronizedByteIterable. toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteListImmutableByteEmptySet. toList()MutableByteListImmutableByteSingletonSet. toList()MutableByteListImmutableByteEmptySet. toSortedList()MutableByteListImmutableByteSingletonSet. toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteListByteHashSet.ImmutableByteHashSet. toList()MutableByteListByteHashSet. toList()MutableByteListByteHashSet.ImmutableByteHashSet. toSortedList()MutableByteListByteHashSet. toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableByteList Modifier and Type Method Description MutableByteListSortedSetAdapter. collectByte(ByteFunction<? super T> byteFunction)MutableByteListSynchronizedSortedSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteListTreeSortedSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteListUnmodifiableSortedSet. collectByte(ByteFunction<? super T> byteFunction) -
Uses of MutableByteList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteListImmutableByteEmptyStack. toList()MutableByteListImmutableByteSingletonStack. toList()MutableByteListImmutableByteArrayStack. toSortedList()MutableByteListImmutableByteEmptyStack. toSortedList()MutableByteListImmutableByteSingletonStack. toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableByteList Modifier and Type Method Description MutableByteListSynchronizedByteStack. toList()MutableByteListUnmodifiableByteStack. toList()MutableByteListByteArrayStack. toSortedList()MutableByteListSynchronizedByteStack. toSortedList()MutableByteListUnmodifiableByteStack. toSortedList() -
Uses of MutableByteList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableByteList Modifier and Type Method Description MutableByteListAbstractByteStack. toList() -
Uses of MutableByteList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableByteList Modifier and Type Method Description static <T> MutableByteListArrayIterate. collectByte(T[] objectArray, ByteFunction<? super T> byteFunction)static <T> MutableByteListArrayListIterate. collectByte(java.util.ArrayList<T> list, ByteFunction<? super T> byteFunction)static <T> MutableByteListListIterate. collectByte(java.util.List<T> list, ByteFunction<? super T> byteFunction) -
Uses of MutableByteList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableByteList Modifier and Type Method Description static <T> MutableByteListRandomAccessListIterate. collectByte(java.util.List<T> list, ByteFunction<? super T> byteFunction)
-