Handbook Glossary
factorcode.org
twos ( x -- y )


Vocabulary
math.integers.private

Inputs
xan object


Outputs
yan object


Definition
USING: kernel math ;

IN: math.integers.private

: twos ( x -- y ) dup 1 - bitxor log2 ; inline