Hoogle Search
Within LTS Haskell 24.22 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
>&&> ) :: X Input -> X Input -> X Inputxmonad-contrib XMonad.Util.Run a >&&> b glues the different inputs a and b by means of &&. For example,
pure "do something" >&&> pure "do another thing"
would result in do something && do another thing being executed by a shell.