Function indexOfMin [src]
Returns the index of the smallest number in a slice. O(n).
slice must not be empty.
Prototype
pub fn indexOfMin(comptime T: type, slice: []const T) usize
Parameters
T: type
slice: []const T
Example
test indexOfMin {
try testing.expectEqual(indexOfMin(u8, "abcdefg"), 0);
try testing.expectEqual(indexOfMin(u8, "bcdefga"), 6);
try testing.expectEqual(indexOfMin(u8, "a"), 0);
}
Source
pub fn indexOfMin(comptime T: type, slice: []const T) usize {
assert(slice.len > 0);
var best = slice[0];
var index: usize = 0;
for (slice[1..], 0..) |item, i| {
if (item < best) {
best = item;
index = i + 1;
}
}
return index;
}