tiny.simd.indicesFromVec
Defined in table.
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
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |