Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
$++$ ) :: Doc ann -> Doc ann -> Doc annlanguage-bash Language.Bash.Pretty Behaves like $+$ except that if one of the documents was empty we do not concatenate at all. mempty is the identity of $+$:
x $++$ mempty == x
andmempty $++$ y == y
(
$<> ) :: RAct x s => x -> s -> xlr-acts Data.Act.Act Infix synonym or ract The acting part is on the right of the operator (symbolized by <>) and the actee on the left (symbolized by $), hence the notation $<>.
-
lucid-extras Lucid.Bootstrap3 No documentation available.
(
$:> ) :: String -> PStruct a -> PStruct aservant-cli Servant.CLI.Internal.PStruct Shift by a path component.
(
$| ) :: forall (m :: Type -> Type) b . MonadUnliftIO m => Segment m () -> Segment m b -> Segment m bshell-conduit Data.Conduit.Shell Fuse two segments (either processes or conduits).
(
$| ) :: forall (m :: Type -> Type) b . MonadUnliftIO m => Segment m () -> Segment m b -> Segment m bshell-conduit Data.Conduit.Shell.Process Fuse two segments (either processes or conduits).
-
shellmet Shellmet Do some IO actions when process failed with IOError.
>>> "echo" ["0"] $? putStrLn "Command failed" ⚙ echo 0 0
>>> "exit" ["1"] $? putStrLn "Command failed" ⚙ exit 1 Command failed
(
$^ ) :: FilePath -> [Text] -> IO ()shellmet Shellmet This operator runs shell command with given options but doesn't print the command itself.
>>> "echo" $^ ["Foo", "Bar"] Foo Bar
(
$| ) :: FilePath -> [Text] -> IO Textshellmet Shellmet Run shell command with given options and return stripped stdout of the executed command.
>>> "echo" $| ["Foo", "Bar"] "Foo Bar"
(
$.// ) :: Cursor node -> (Cursor node -> [a]) -> [a]xml-indexed-cursor Text.XML.Cursor.Indexed Apply an axis to a 'Cursor node' as well as its descendants.