planet-mitchell-0.0.0: src/Clock.hs
{-# LANGUAGE CPP #-}
module Clock
(
#if MIN_VERSION_base(4,11,0)
-- * Monotonic time
getMonotonicTime,
getMonotonicTimeNSec,
#endif
-- * CPU time
getCPUTime,
cpuTimePrecision,
) where
#if MIN_VERSION_base(4,11,0)
import GHC.Clock
#endif
import System.CPUTime