Hoogle Search
Within LTS Haskell 24.46 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
ghc-internal GHC.Internal.Foreign.C.Error No documentation available.
withMany :: (a -> (b -> res) -> res) -> [a] -> ([b] -> res) -> resghc-internal GHC.Internal.Foreign.Marshal.Utils Replicates a withXXX combinator over a list of objects, yielding a list of marshalled objects
catchAny :: IO a -> (forall e . Exception e => e -> IO a) -> IO aghc-internal GHC.Internal.IO Catch any Exception type in the IO monad. Note that this function is strict in the action. That is, catchAny undefined b == _|_. See for details.
-
ghc-internal GHC.Internal.Text.ParserCombinators.ReadP Parses zero or more occurrences of the given parser.
-
ghc-internal GHC.Internal.Text.ParserCombinators.ReadP Parses one or more occurrences of the given parser.
manyTill :: ReadP a -> ReadP end -> ReadP [a]ghc-internal GHC.Internal.Text.ParserCombinators.ReadP manyTill p end parses zero or more occurrences of p, until end succeeds. Returns a list of values returned by p.
skipMany :: ReadP a -> ReadP ()ghc-internal GHC.Internal.Text.ParserCombinators.ReadP Like many, but discards the result.
skipMany1 :: ReadP a -> ReadP ()ghc-internal GHC.Internal.Text.ParserCombinators.ReadP Like many1, but discards the result.
-
gi-pango GI.Pango.Enums Osmanya
waitAny :: MonadBaseControl IO m => [Async (StM m a)] -> m (Async (StM m a), a)lifted-async Control.Concurrent.Async.Lifted Generalized version of waitAny.