Skip to documentation
SLOP

tiny.simd.isUnsigned

Reference tiny.simd isUnsigned

Defined in tag.

Called byCallsNo direct callstest sourcelib.simd.src.bfloattest: Highway bfloat16 descriptors pr...test sourcelib.simd.src.tagtest: Highway lane type relations cov...tagisUnsigned
Static calls · unresolved targets: 0 · external targets: 0.

Source

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

zig
pub fn isUnsigned(comptime T: type) bool {    return switch (@typeInfo(T)) {        .int => |info| info.signedness == .unsigned,        else => false,    };}

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

zig
pub const isUnsigned = tag.isUnsigned;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433