úΊ¥      Safe-Inferred@Suspends the current thread for a given number of microseconds. CThere is no guarantee that the thread will be rescheduled promptly C when the delay has expired, but the thread will never continue to  run earlier than specified. 6Delay the current thread for at least n milliseconds. 1Delay the current thread for at least n seconds. 1Delay the current thread for at least n minutes. /Delay the current thread for at least n hours. .Delay the current thread for at least n days.  Safe-Inferred Synonym for  return ().  Synonym for pure (). Function name for  , as  is to . ,Combinator for working with monadic values: %om when (return True) $ print "Hello""Hello")return True >>= flip when (print "Hello")"Hello"om forM_ (return [True]) printTrue"flip forM_ print =<< return [True]TruemapM_ print =<< return [True]True/Subsumes the need for individual functions for whenM, unlessM, etc.  Variant of  7 which changes the roles of the 2nd and 3rd arguments. nom mapM_ print $ return [True]TruemapM_ print =<< return [True]True /Convenience function if all you want to use is  . Short-hand for liftIO.          monad-extras-0.3.2.0Control.Concurrent.DelayControl.Monad.ExtradelayMicrosecsdelayMillisecs delaySeconds delayMinutes delayHours delayDaysskipobviousbindomnomdoCallCCiobaseGHC.Base>>=fmap Data.Functor<$>transformers-0.3.0.0Control.Monad.Trans.ContcallCC