Returns the index of the smallest value.
import { Numbers } from 'https://unpkg.com/ixfx/dist/Numbers.js';const v = [ 10, 40, 5 ];Numbers.minIndex(v); // Yields 2 Copy
import { Numbers } from 'https://unpkg.com/ixfx/dist/Numbers.js';const v = [ 10, 40, 5 ];Numbers.minIndex(v); // Yields 2
Rest
Array of numbers
Index of smallest value
Returns the index of the smallest value.