Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
haskell-src-exts Language.Haskell.Exts.Syntax A general transqual in a list comprehension, which could potentially be a transform of the kind enabled by TransformListComp.
QualStmt :: l -> Stmt l -> QualStmt lhaskell-src-exts Language.Haskell.Exts.Syntax an ordinary statement
RecStmt :: l -> [Stmt l] -> Stmt lhaskell-src-exts Language.Haskell.Exts.Syntax a recursive binding group for arrows
adjustMap :: IsMap map => (MapValue map -> MapValue map) -> ContainerKey map -> map -> mapmono-traversable Data.Containers Apply a function to the value of a given key. Returns the input map when the key-value pair does not exist.
lastMay :: MonoFoldable mono => mono -> Maybe (Element mono)mono-traversable Data.MonoTraversable Safe version of lastEx. Returns Nothing instead of throwing an exception when encountering an empty monomorphic container.
firstM :: Monad m => (a -> m Bool) -> [a] -> m (Maybe a)monad-loops Control.Monad.Loops return the first value from a list, if any, satisfying the given predicate.
-
rio RIO.List No documentation available.
checkExitCodeSTM :: Process stdin stdout stderr -> STM ()rio RIO.Process Same as checkExitCode, but in STM.
getExitCodeSTM :: Process stdin stdout stderr -> STM (Maybe ExitCode)rio RIO.Process Same as getExitCode, but in STM.
waitExitCodeSTM :: Process stdin stdout stderr -> STM ExitCoderio RIO.Process Same as waitExitCode, but in STM.