Handbook Glossary
factorcode.org
(integer-log10) ( x -- n )


Vocabulary
math.functions.integer-logs.private

Inputs
xan object


Outputs
nan object


Definition
IN: math.functions.integer-logs.private

GENERIC: (integer-log10) ( x -- n ) foldable flushable


Methods
USING: math math.functions.integer-logs.private ;

M: bignum (integer-log10) bignum-integer-log10 ; inline


USING: kernel.private math math.functions.integer-logs.private ;

M: fixnum (integer-log10)
fixnum-integer-log10 { fixnum } declare ; inline


USING: math math.functions.integer-logs.private ;

M: ratio (integer-log10)
[ (integer-log10) ] 10 (ratio-integer-log) ;