Uses of Class
tech.bitey.bufferstuff.SmallLongBuffer
-
Uses of SmallLongBuffer in tech.bitey.bufferstuff
Methods in tech.bitey.bufferstuff that return SmallLongBufferModifier and TypeMethodDescriptiondefault SmallLongBufferBigByteBuffer.asLongBuffer()Creates a view of this byte buffer as a long buffer.SmallLongBuffer.duplicate()SmallLongBuffer.put(int index, long value) Absolute put methodSmallLongBuffer.put(long value) Relative put methodfinal SmallLongBufferSmallLongBuffer.put(long[] src) Relative bulk put methodSmallLongBuffer.put(LongBuffer src) Relative bulk put methodSmallLongBuffer.put(SmallLongBuffer src) Relative bulk put methodSmallLongBuffer.slice()Methods in tech.bitey.bufferstuff with parameters of type SmallLongBufferModifier and TypeMethodDescriptionstatic intBufferSearch.binaryFindFirst(SmallLongBuffer b, int minIndex, int keyIndex) Searches a range of the specifiedSmallLongBufferfor the first occurrence of the value at the givenkeyIndex.static intBufferSearch.binaryFindLast(SmallLongBuffer b, int maxIndex, int keyIndex) Searches a range of the specifiedSmallLongBufferfor the last occurrence of the value at the givenkeyIndex.static intBufferSearch.binarySearch(SmallLongBuffer b, int fromIndex, int toIndex, long key) Searches a range of the specifiedSmallLongBufferfor the specified value using the binary search algorithm.static intBufferUtils.deduplicate(SmallLongBuffer b, int fromIndex, int toIndex) Deduplicates a range of the specifiedSmallLongBuffer.static voidBufferSort.heapSort(SmallLongBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallLongBufferin ascending order (lowest first).static voidBufferSort.insertionSort(SmallLongBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallLongBufferin ascending order (lowest first).static booleanBufferUtils.isSorted(SmallLongBuffer b, int fromIndex, int toIndex) Determines if the specified buffer is sorted inside the specified range.static booleanBufferUtils.isSortedAndDistinct(SmallLongBuffer b, int fromIndex, int toIndex) Determines if the specified buffer is sorted and distinct inside the specified range.SmallLongBuffer.put(SmallLongBuffer src) Relative bulk put methodstatic voidBufferSort.radixSort(SmallLongBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallLongBufferin ascending order (lowest first).static voidBufferSort.sort(SmallLongBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallLongBufferin ascending order (lowest first).static LongStreamBufferUtils.stream(SmallLongBuffer buffer) Returns a sequentialLongStreamwith the specified buffer as its source.static LongStreamBufferUtils.stream(SmallLongBuffer buffer, int startInclusive, int endExclusive, int characteristics) Returns a sequentialLongStreamwith the specified range of the specified buffer as its source.Constructors in tech.bitey.bufferstuff with parameters of type SmallLongBufferModifierConstructorDescriptionSmallLongBufferSpliterator(SmallLongBuffer buffer, int additionalCharacteristics) Creates a spliterator covering all of the givenSmallLongBuffer.SmallLongBufferSpliterator(SmallLongBuffer buffer, int origin, int fence, int additionalCharacteristics) Creates a spliterator covering the givenSmallLongBufferand range.