W- ( x y -- z )
Factor handbook » The language » Numbers » Arithmetic » Bitwise arithmetic » Additional bitwise arithmetic

Prev:W+ ( x y -- z )
Next:W* ( x y -- z )


Vocabulary
math.bitwise

Inputs
xan integer
yan integer


Outputs
zan integer


Word description
Subtracts two integers and wraps the result to a 64-bit unsigned integer.

Examples
USING: math.bitwise kernel prettyprint ; 0x0 0xff W- .
18446744073709551361


Definition