Skip to documentation
SLOP

tiny.simd.get2

Reference tiny.simd get2

Defined in tuple.

Called byCallsNo direct callstest sourcelib.simd.src.tupletest: Highway tuples retain ordered v...tupleget2
Static calls · unresolved targets: 0 · external targets: 0.

Source

Source: lib/simd/src/tuple.zig:26

zig
pub fn get2(comptime index: usize, value: anytype) @TypeOf(value[index]) {    if (comptime index >= 2) @compileError("get2 index must be less than two");    return value[index];}

Source: lib/simd/src/root.zig:216

zig
pub const get2 = tuple.get2;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433