-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | A couple functions that probably should be in the 'clock' package
--   
--   A couple functions that probably should be in the <a>clock</a>
--   package, such as <a>elapsedTime</a> and <a>diffSeconds</a>.
@package clock-extras
@version 0.1.0.2


-- | A couple functions that probably should be in the <tt>clock</tt>
--   package. See this issue:
--   <a>https://github.com/corsis/clock/issues/42</a>
module System.Clock.TimeIt

-- | Time an action. Return the elasped time the result
elapsedTime :: IO a -> IO (a, Double)

-- | Subtract two TimeSpecs and return the result in seconds
diffSeconds :: TimeSpec -> TimeSpec -> Double
