-- | Common functions for numbers. module Nums (-- * General operations fi) where {-# INLINE fi #-} -- | Short-hand for fromIntegral. fi :: (Integral a, Num b) => a -> b fi = fromIntegral