Uses of Class
tech.bitey.bufferstuff.SmallDoubleBuffer
-
Uses of SmallDoubleBuffer in tech.bitey.bufferstuff
Methods in tech.bitey.bufferstuff that return SmallDoubleBufferModifier and TypeMethodDescriptiondefault SmallDoubleBufferBigByteBuffer.asDoubleBuffer()Creates a view of this byte buffer as a double buffer.SmallDoubleBuffer.duplicate()SmallDoubleBuffer.put(double value) Relative put methodfinal SmallDoubleBufferSmallDoubleBuffer.put(double[] src) Relative bulk put methodSmallDoubleBuffer.put(int index, double value) Absolute put methodSmallDoubleBuffer.put(DoubleBuffer src) Relative bulk put methodSmallDoubleBuffer.put(SmallDoubleBuffer src) Relative bulk put methodSmallDoubleBuffer.slice()Methods in tech.bitey.bufferstuff with parameters of type SmallDoubleBufferModifier and TypeMethodDescriptionstatic intBufferSearch.binaryFindFirst(SmallDoubleBuffer b, int minIndex, int keyIndex) Searches a range of the specifiedSmallDoubleBufferfor the first occurrence of the value at the givenkeyIndex.static intBufferSearch.binaryFindLast(SmallDoubleBuffer b, int maxIndex, int keyIndex) Searches a range of the specifiedSmallDoubleBufferfor the last occurrence of the value at the givenkeyIndex.static intBufferSearch.binarySearch(SmallDoubleBuffer b, int fromIndex, int toIndex, double key) Searches a range of the specifiedSmallDoubleBufferfor the specified value using the binary search algorithm.static intBufferUtils.deduplicate(SmallDoubleBuffer b, int fromIndex, int toIndex) Deduplicates a range of the specifiedSmallDoubleBuffer.static voidBufferSort.heapSort(SmallDoubleBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallDoubleBufferin ascending order (lowest first).static voidBufferSort.insertionSort(SmallDoubleBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallDoubleBufferin ascending order (lowest first).static booleanBufferUtils.isSorted(SmallDoubleBuffer b, int fromIndex, int toIndex) Determines if the specified buffer is sorted inside the specified range.static booleanBufferUtils.isSortedAndDistinct(SmallDoubleBuffer b, int fromIndex, int toIndex) Determines if the specified buffer is sorted and distinct inside the specified range.SmallDoubleBuffer.put(SmallDoubleBuffer src) Relative bulk put methodstatic voidBufferSort.sort(SmallDoubleBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallDoubleBufferin ascending order (lowest first).static DoubleStreamBufferUtils.stream(SmallDoubleBuffer buffer) Returns a sequentialDoubleStreamwith the specified buffer as its source.static DoubleStreamBufferUtils.stream(SmallDoubleBuffer buffer, int startInclusive, int endExclusive, int characteristics) Returns a sequentialDoubleStreamwith the specified range of the specified buffer as its source.Constructors in tech.bitey.bufferstuff with parameters of type SmallDoubleBufferModifierConstructorDescriptionSmallDoubleBufferSpliterator(SmallDoubleBuffer buffer, int additionalCharacteristics) Creates a spliterator covering all of the givenSmallDoubleBuffer.SmallDoubleBufferSpliterator(SmallDoubleBuffer buffer, int origin, int fence, int additionalCharacteristics) Creates a spliterator covering the givenSmallDoubleBufferand range.