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


-- | A simple stopwatch utility
--   
--   A simple stopwatch utility
@package stopwatch
@version 0.1.0.5


-- | A simple stopwatch utility function(s).
module Control.StopWatch

-- | Execute the given computation, measure the time it takes and return
--   the result.
stopWatch :: MonadIO m => m a -> m (a, TimeSpec)
