Skip to documentation
SLOP

tiny.simd.isIntegerLane

Reference tiny.simd isIntegerLane

Defined in tag.

Called byCallsNo direct callstest sourcelib.simd.src.tagtest: Highway lane type relations cov...tagisIntegerLane
Static calls · unresolved targets: 0 · external targets: 0.

Source

Source: lib/simd/src/tag.zig:360

zig
pub fn isIntegerLane(comptime T: type) bool {    return switch (@typeInfo(T)) {        .int => |info| info.bits == 8 or info.bits == 16 or            info.bits == 32 or info.bits == 64,        else => false,    };}

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

zig
pub const isIntegerLane = tag.isIntegerLane;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433