tiny.simd.blendedStore
Defined in memory.
Source
Source: lib/simd/src/memory.zig:137
zig
pub fn blendedStore( comptime D: type, value: D.Vector, mask: D.Mask, output: []D.Lane,) void { std.debug.assert(output.len >= D.lane_count); inline for (0..D.lane_count) |index| { if (mask[index]) output[index] = value[index]; }}Source: lib/simd/src/root.zig:237
zig
pub const blendedStore = memory.blendedStore;Audit
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |