Skip to documentation
SLOP

tiny.simd.@"and"

Reference tiny.simd @"and"

Defined in logical.

Called byCallslogicalandNotlogicalandXorlogicalorAndlogicaltestBittest sourcelib.simd.src.logicaltest: logical operations match Highwa...private sourcelib.simd.src.logicalunsignedVectorlogicalbitAnd
Static calls · unresolved targets: 0 · external targets: 0.

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

bitAnd.

Audit

Definitions1
Public names3
Members0
Version26.7.0
Revisiondaab053ee433