tiny.simd.@"and"
Defined in logical.
Source
Source: lib/simd/src/logical.zig:9
zig
pub fn bitAnd(comptime D: type, a: D.Vector, b: D.Vector) D.Vector { const UVector = unsignedVector(D); const a_bits: UVector = @bitCast(a); const b_bits: UVector = @bitCast(b); return @bitCast(a_bits & b_bits);}Source: lib/simd/src/root.zig:661
zig
pub const @"and" = logical.bitAnd;Also reachable as
Audit
| Definitions | 1 |
|---|---|
| Public names | 3 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |