Skip to documentation
SLOP

tiny.simd.rotateLeft

Reference tiny.simd rotateLeft

Defined in rotate.

Called byCallstest sourcelib.simd.src.rotatetest: Highway fixed rotations wrap ev...private sourcelib.simd.src.rotateverifyLaneTypeprivate sourcelib.simd.src.rotateUnsignedVectorprivate sourcelib.simd.src.rotaterotateLeftBitsprivate sourcelib.simd.src.rotatevalidateprivate sourcelib.simd.src.rotatevalidateAmountrotaterotateLeft
Static calls · unresolved targets: 0 · external targets: 0.

Source

Source: lib/simd/src/rotate.zig:4

zig
pub fn rotateLeft(    comptime D: type,    comptime amount: usize,    value: D.Vector,) D.Vector {    validate(D);    validateAmount(D, amount);    const amounts: UnsignedVector(D) = @splat(amount);    return rotateLeftBits(D, value, amounts);}

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

zig
pub const rotateLeft = rotate.rotateLeft;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433