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