Handbook Glossary
factorcode.org
real<=> ( x y -- <=> )


Vocabulary
math.order.private

Inputs
xan object
yan object


Outputs
<=>an object


Definition
IN: math.order.private

MATH: real<=> ( x y -- <=> )


Methods
USING: kernel.private math math.order.private ;

M: bignum real<=> { bignum bignum } declare (real<=>) ; inline


USING: kernel.private math math.order.private ;

M: fixnum real<=> { fixnum fixnum } declare (real<=>) ; inline


USING: kernel.private math math.order.private ;

M: float real<=> { float float } declare (real<=>) ; inline


USING: math math.order.private ;

M: real real<=> (real<=>) ; inline