tiny.simd.iota
Defined in construct.
Source
Source: lib/simd/src/construct.zig:50
zig
pub fn iota(comptime D: type, first: D.Lane) D.Vector { var result: D.Vector = undefined; inline for (0..D.lane_count) |index| { result[index] = iotaLane(D.Lane, first, index); } return result;}Source: lib/simd/src/root.zig:207
zig
pub const iota = construct.iota;Audit
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |