fast-gcd ( x y -- d )


Vocabulary
math.functions

Definition
IN: math.functions

MATH: fast-gcd ( x y -- d ) foldable flushable


Methods
USING: math math.functions math.private ;

M: bignum fast-gcd bignum-gcd ; inline


USING: math math.functions math.functions.private ;

M: real fast-gcd simple-gcd ; inline