Skip to documentation
SLOP

tiny.simd.indicesFromVec

Reference tiny.simd indicesFromVec

Defined in table.

Called byCallsprivate sourcelib.simd.src.tableverifyTableLaneTypeprivate sourcelib.simd.src.tablevectorInfotableindicesFromVec
Static calls · unresolved targets: 0 · external targets: 0.

Source

Source: lib/simd/src/table.zig:32

zig
pub fn indicesFromVec(comptime D: type, indices: anytype) @TypeOf(indices) {    const info = vectorInfo(@TypeOf(indices));    if (info.len < D.lane_count or @typeInfo(info.child) != .int or        @bitSizeOf(info.child) != @bitSizeOf(D.Lane))    {        @compileError("table indices require enough integer lanes matching the table lane width");    }    return indices;}

Source: lib/simd/src/root.zig:875

zig
pub const indicesFromVec = table.indicesFromVec;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433