-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Debug.Trace equivalent for timing computations -- -- Please see README.md @package debug-time @version 0.1.0.0 module Debug.Time -- | Ties the evaluation of the value with the start of a timer with the -- given name. startTimer :: String -> a -> a -- | Ties the evaluation of the value with an action tracing the elapsed -- time since the start of the timer. traceTimer :: String -> a -> a -- | Synonym for startTimer. restartTimer :: String -> a -> a -- | Initializes the timer store. This makes the first measurement more -- reliable." initializeTimers :: IO ()