Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
ghc-lib-parser GHC.Utils.Exception When invoked inside mask, this function allows a masked asynchronous exception to be raised, if one exists. It is equivalent to performing an interruptible operation (see #interruptible), but does not involve any actual blocking. When called outside mask, or inside uninterruptibleMask, this function has no effect.
all2 :: (a -> b -> Bool) -> [a] -> [b] -> Boolghc-lib-parser GHC.Utils.Misc No documentation available.
allM :: (Monad m, Foldable f) => (a -> m Bool) -> f a -> m Boolghc-lib-parser GHC.Utils.Monad Monad version of all, aborts the computation at the first False value
allocaGValue :: (GValue -> IO b) -> IO bglib System.Glib.GValue Temporarily allocate a GValue.
-
libBF LibBF.Opts Allow denormalized answers.
allNoThunks :: [IO (Maybe ThunkInfo)] -> IO (Maybe ThunkInfo)nothunks NoThunks.Class Short-circuit a list of checks
allocate :: MonadSafe m => Base m a -> (a -> Base m ()) -> m (ReleaseKey, a)pipes-safe Pipes.Safe.Prelude Acquire some resource with a guarantee that it will eventually be released The ReleaseKey can be passed to release to release the resource manually. If this has not been done by the end of the MonadSafe block, the resource will be released automatically.
allocate_ :: MonadSafe m => Base m a -> Base m () -> m ReleaseKeypipes-safe Pipes.Safe.Prelude Like allocate, but for when the resource itself is not needed The acquire action runs immediately. The ReleaseKey can be passed to release to run the release action. If this has not been done by the end of the MonadSafe block, the release action will be run automatically.
allAsString :: TextParser Stringpolyparse Text.Parse Simply return the entire remaining input String.
allAsByteString :: TextParser ByteStringpolyparse Text.Parse.ByteString Simply return the remaining input ByteString.