Uses of Class
tech.bitey.bufferstuff.SmallByteBuffer
-
Uses of SmallByteBuffer in tech.bitey.bufferstuff
Methods in tech.bitey.bufferstuff that return SmallByteBufferModifier and TypeMethodDescriptiondefault SmallByteBufferBigByteBuffer.asByteBuffer()Creates a view of this byte buffer as a byte buffer.SmallByteBuffer.duplicate()SmallByteBuffer.put(byte value) Relative put methodfinal SmallByteBufferSmallByteBuffer.put(byte[] src) Relative bulk put methodSmallByteBuffer.put(int index, byte value) Absolute put methodSmallByteBuffer.put(ByteBuffer src) Relative bulk put methodSmallByteBuffer.put(SmallByteBuffer src) Relative bulk put methodSmallByteBuffer.slice()Methods in tech.bitey.bufferstuff with parameters of type SmallByteBufferModifier and TypeMethodDescriptionstatic intBufferSearch.binaryFindFirst(SmallByteBuffer b, int minIndex, int keyIndex) Searches a range of the specifiedSmallByteBufferfor the first occurrence of the value at the givenkeyIndex.static intBufferSearch.binaryFindLast(SmallByteBuffer b, int maxIndex, int keyIndex) Searches a range of the specifiedSmallByteBufferfor the last occurrence of the value at the givenkeyIndex.static intBufferSearch.binarySearch(SmallByteBuffer b, int fromIndex, int toIndex, byte key) Searches a range of the specifiedSmallByteBufferfor the specified value using the binary search algorithm.static voidBufferSort.countingSort(SmallByteBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallByteBufferin ascending order (lowest first).static intBufferUtils.deduplicate(SmallByteBuffer b, int fromIndex, int toIndex) Deduplicates a range of the specifiedSmallByteBuffer.static voidBufferSort.heapSort(SmallByteBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallByteBufferin ascending order (lowest first).static voidBufferSort.insertionSort(SmallByteBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallByteBufferin ascending order (lowest first).static booleanBufferUtils.isSorted(SmallByteBuffer b, int fromIndex, int toIndex) Determines if the specified buffer is sorted inside the specified range.static booleanBufferUtils.isSortedAndDistinct(SmallByteBuffer b, int fromIndex, int toIndex) Determines if the specified buffer is sorted and distinct inside the specified range.SmallByteBuffer.put(SmallByteBuffer src) Relative bulk put methodstatic voidBufferSort.sort(SmallByteBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallByteBufferin ascending order (lowest first).