tiny.simd.insertLane
Defined in construct.
Source
Source: lib/simd/src/construct.zig:72
zig
pub fn insertLane( comptime D: type, value: D.Vector, index: usize, inserted: D.Lane,) D.Vector { std.debug.assert(index < D.lane_count); var values: [D.lane_count]D.Lane = value; values[index] = inserted; std.debug.assert(values[index] == inserted); return values;}Source: lib/simd/src/root.zig:211
zig
pub const insertLane = construct.insertLane;Audit
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |