integer-log2 ( x -- n )
Integer logarithms

Next:integer-log10 ( x -- n )


Vocabulary
math.functions.integer-logs

Inputs
xa positive rational number


Outputs
nan integer


Word description
Outputs the largest integer n such that 2^n is less than or equal to x.

Errors
Throws an error if x is zero or negative.

Definition