Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

VectorIndex

Returns the smallest type of unsigned ints capable of indexing any element within the given vector type.

simd.VectorIndex
pub fn VectorIndex(comptime VectorType: type) type

File

lib/std/simd.zig:114

Code

pub fn VectorIndex(comptime VectorType: type) type {
    return std.math.IntFittingRange(0, vectorLength(VectorType) - 1);
}