Hoogle Search
Within LTS Haskell 24.3 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
BlockedIndefinitelyOnSTM :: BlockedIndefinitelyOnSTMbase GHC.IO.Exception No documentation available.
blockedIndefinitelyOnSTM :: SomeExceptionbase GHC.IO.Exception No documentation available.
unfoldForestM :: Monad m => (b -> m (a, [b])) -> [b] -> m [Tree a]containers Data.Tree Monadic forest builder, in depth-first order
unfoldForestM_BF :: Monad m => (b -> m (a, [b])) -> [b] -> m [Tree a]containers Data.Tree Monadic forest builder, in breadth-first order See unfoldForest for more info. Implemented using an algorithm adapted from Breadth-First Numbering: Lessons from a Small Exercise in Algorithm Design, by Chris Okasaki, ICFP'00.
hoistMaybe :: forall (m :: Type -> Type) b . Applicative m => Maybe b -> MaybeT m btransformers Control.Monad.Trans.Maybe TestManager :: [OptionDescription] -> (OptionSet -> TestTree -> Maybe (IO Bool)) -> Ingredienttasty Test.Tasty.Ingredients No documentation available.
TestManager :: [OptionDescription] -> (OptionSet -> TestTree -> Maybe (IO Bool)) -> Ingredienttasty Test.Tasty.Runners No documentation available.
FirstMostWeek :: FirstWeekTypetime Data.Time.Calendar.WeekDate first week is the first week with four days in the year
pastMidnight :: DiffTime -> TimeOfDaytime Data.Time.LocalTime Same as timeToTimeOfDay.
uniformListM :: (StatefulGen g m, Uniform a) => Int -> g -> m [a]random System.Random.Stateful Generates a list of pseudo-random values.
Examples
>>> import System.Random.Stateful >>> let pureGen = mkStdGen 137 >>> g <- newIOGenM pureGen >>> uniformListM 10 g :: IO [Bool] [True,True,True,True,False,True,True,False,False,False]