numerals-0.4.1: Convert numbers to number words

Safe HaskellNone
LanguageHaskell98

Text.Numeral.Misc

Synopsis

Documentation

dec :: Integral a => a -> a Source #

The (base 10) logarithm of an integral value. Note that the result must be able to fit in an ordinary Int value. This means the maximum input value is 10 ^ (maxBound :: Int).

Raise 10 to some power.

intLog :: Integral a => a -> a Source #