Uses of Class
tech.bitey.bufferstuff.SmallFloatBuffer
-
Uses of SmallFloatBuffer in tech.bitey.bufferstuff
Methods in tech.bitey.bufferstuff that return SmallFloatBufferModifier and TypeMethodDescriptiondefault SmallFloatBufferBigByteBuffer.asFloatBuffer()Creates a view of this byte buffer as a float buffer.SmallFloatBuffer.duplicate()SmallFloatBuffer.put(float value) Relative put methodfinal SmallFloatBufferSmallFloatBuffer.put(float[] src) Relative bulk put methodSmallFloatBuffer.put(int index, float value) Absolute put methodSmallFloatBuffer.put(FloatBuffer src) Relative bulk put methodSmallFloatBuffer.put(SmallFloatBuffer src) Relative bulk put methodSmallFloatBuffer.slice()Methods in tech.bitey.bufferstuff with parameters of type SmallFloatBufferModifier and TypeMethodDescriptionstatic intBufferSearch.binaryFindFirst(SmallFloatBuffer b, int minIndex, int keyIndex) Searches a range of the specifiedSmallFloatBufferfor the first occurrence of the value at the givenkeyIndex.static intBufferSearch.binaryFindLast(SmallFloatBuffer b, int maxIndex, int keyIndex) Searches a range of the specifiedSmallFloatBufferfor the last occurrence of the value at the givenkeyIndex.static intBufferSearch.binarySearch(SmallFloatBuffer b, int fromIndex, int toIndex, float key) Searches a range of the specifiedSmallFloatBufferfor the specified value using the binary search algorithm.static intBufferUtils.deduplicate(SmallFloatBuffer b, int fromIndex, int toIndex) Deduplicates a range of the specifiedSmallFloatBuffer.static voidBufferSort.heapSort(SmallFloatBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallFloatBufferin ascending order (lowest first).static voidBufferSort.insertionSort(SmallFloatBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallFloatBufferin ascending order (lowest first).static booleanBufferUtils.isSorted(SmallFloatBuffer b, int fromIndex, int toIndex) Determines if the specified buffer is sorted inside the specified range.static booleanBufferUtils.isSortedAndDistinct(SmallFloatBuffer b, int fromIndex, int toIndex) Determines if the specified buffer is sorted and distinct inside the specified range.SmallFloatBuffer.put(SmallFloatBuffer src) Relative bulk put methodstatic voidBufferSort.sort(SmallFloatBuffer b, int fromIndex, int toIndex) Sorts a range of the specifiedSmallFloatBufferin ascending order (lowest first).