Skip to main content

Module bitwise

Module bitwise 

Source
Expand description

Bitwise and two-wire integer arithmetic nodes.

These nodes operate on pairs of u64 wire inputs (no constants). They complement the existing const-param arithmetic nodes (add, mul, div, mod) which take one wire and one constant.

All nodes support P2 (compiled_u64) and P3 (JIT) execution.

Structsยง

CheckedAdd
The checked_add node.
CheckedMul
The checked_mul node.
CheckedSub
The checked_sub node.
U64Add
The u64_add node.
U64And
The u64_and node.
U64Div
The u64_div node.
U64Mod
The u64_mod node.
U64Mul
The u64_mul node.
U64Not
The u64_not node.
U64Or
The u64_or node.
U64Shl
The u64_shl node.
U64Shr
The u64_shr node.
U64Sub
The u64_sub node.
U64Xor
The u64_xor node.