Uses of Interface
org.eclipse.collections.api.tuple.primitive.ByteBytePair
-
Packages that use ByteBytePair Package Description org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets. -
-
Uses of ByteBytePair in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description default ListIterable<ByteBytePair>ByteList. zipByte(ByteIterable iterable)Returns aListIterableformed from thisByteListand anotherByteListby combining corresponding elements in pairs.default ImmutableList<ByteBytePair>ImmutableByteList. zipByte(ByteIterable iterable)Returns anImmutableListformed from thisImmutableByteListand anotherByteListby combining corresponding elements in pairs.default MutableList<ByteBytePair>MutableByteList. zipByte(ByteIterable iterable)Returns aMutableListformed from thisMutableByteListand anotherByteListby combining corresponding elements in pairs. -
Uses of ByteBytePair in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description RichIterable<ByteBytePair>ByteByteMap. keyValuesView()Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteBytePair Modifier and Type Method Description default voidMutableByteByteMap. putPair(ByteBytePair keyValuePair)This method allows MutableByteByteMap the ability to add an element in the form of ByteBytePair.Method parameters in org.eclipse.collections.api.map.primitive with type arguments of type ByteBytePair Modifier and Type Method Description default MutableByteByteMapMutableByteByteMap. withAllKeyValues(Iterable<ByteBytePair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map. -
Uses of ByteBytePair in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description LazyIterable<ByteBytePair>ByteSet. cartesianProduct(ByteSet set)Returns the set whose members are all possible ordered pairs (a, b) where a is a member ofthisand b is a member ofset.
-