Uses of Class
tech.bitey.bufferstuff.SmallIntBuffer
-
Uses of SmallIntBuffer in tech.bitey.bufferstuff
Methods in tech.bitey.bufferstuff that return SmallIntBufferModifier and TypeMethodDescriptiondefault SmallIntBufferBigByteBuffer.asIntBuffer()Creates a view of this byte buffer as a int buffer.SmallIntBuffer.duplicate()SmallIntBuffer.put(int value) Relative put methodfinal SmallIntBufferSmallIntBuffer.put(int[] src) Relative bulk put methodSmallIntBuffer.put(int index, int value) Absolute put methodRelative bulk put methodSmallIntBuffer.put(SmallIntBuffer src) Relative bulk put methodSmallIntBuffer.slice()Methods in tech.bitey.bufferstuff with parameters of type SmallIntBufferModifier and TypeMethodDescriptionstatic intBufferSearch.binaryFindFirst(SmallIntBuffer b, int minIndex, int keyIndex) Searches a range of the specifiedSmallIntBufferfor the first occurrence of the value at the givenkeyIndex.static intBufferSearch.binaryFindLast(SmallIntBuffer b, int maxIndex, int keyIndex) Searches a range of the specifiedSmallIntBufferfor the last occurrence of the value at the givenkeyIndex.static intBufferSearch.binarySearch(SmallIntBuffer b, int fromIndex, int toIndex, int key) Searches a range of the specifiedSmallIntBufferfor the specified value using the binary search algorithm.static intBufferUtils.deduplicate(SmallIntBuffer b, int fromIndex, int toIndex) Deduplicates a range of the specifiedSmallIntBuffer.static voidBufferSort.heapSort(SmallIntBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallIntBufferin ascending order (lowest first).static voidBufferSort.heapSort(SmallIntBuffer b, IntBinaryOperator comparator, int fromIndex, int toIndex) Sorts a range of the specifiedSmallIntBufferin ascending order (lowest first).static voidBufferSort.insertionSort(SmallIntBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallIntBufferin ascending order (lowest first).static booleanBufferUtils.isSorted(SmallIntBuffer b, int fromIndex, int toIndex) Determines if the specified buffer is sorted inside the specified range.static booleanBufferUtils.isSortedAndDistinct(SmallIntBuffer b, int fromIndex, int toIndex) Determines if the specified buffer is sorted and distinct inside the specified range.SmallIntBuffer.put(SmallIntBuffer src) Relative bulk put methodstatic voidBufferSort.radixSort(SmallIntBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallIntBufferin ascending order (lowest first).static voidBufferSort.sort(SmallIntBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallIntBufferin ascending order (lowest first).static IntStreamBufferUtils.stream(SmallIntBuffer buffer) Returns a sequentialIntStreamwith the specified buffer as its source.static IntStreamBufferUtils.stream(SmallIntBuffer buffer, int startInclusive, int endExclusive, int characteristics) Returns a sequentialIntStreamwith the specified range of the specified buffer as its source.Constructors in tech.bitey.bufferstuff with parameters of type SmallIntBufferModifierConstructorDescriptionSmallIntBufferSpliterator(SmallIntBuffer buffer, int additionalCharacteristics) Creates a spliterator covering all of the givenSmallIntBuffer.SmallIntBufferSpliterator(SmallIntBuffer buffer, int origin, int fence, int additionalCharacteristics) Creates a spliterator covering the givenSmallIntBufferand range.