tiny.simd.insertIntoUpper
Defined in memory.
Source
Source: lib/simd/src/memory.zig:85
zig
pub fn insertIntoUpper( comptime D: type, input: []const D.Lane, value: D.Vector,) D.Vector { const half = D.lane_count / 2; std.debug.assert(input.len >= half); var result = value; inline for (0..half) |index| result[index + half] = input[index]; return result;}Source: lib/simd/src/root.zig:233
zig
pub const insertIntoUpper = memory.insertIntoUpper;Audit
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |