Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
.&. ) :: Bits a => a -> a -> acopilot-language Copilot.Language.Operators.BitWise Bitwise "and"
(
.&. ) :: (IsPath a, IsPath b) => a -> b -> Pathfuncmp FMP.Picture No documentation available.
-
language-c99-simple Language.C99.Simple.Expr No documentation available.
-
language-c99-simple Language.C99.Simple.Expr No documentation available.
-
language-c99-simple Language.C99.Simple.Expr No documentation available.
(
<&> ) :: Functor f => f a -> (a -> b) -> f bquaalude Essentials Flipped version of <$>.
(<&>) = flip fmap
Examples
Apply (+1) to a list, a Just and a Right:>>> Just 2 <&> (+1) Just 3
>>> [1,2,3] <&> (+1) [2,3,4]
>>> Right 3 <&> (+1) Right 4
(
-&&- ) :: Script () -> Script () -> Script ()shell-monad Control.Monad.Shell ANDs two Scripts.
(
<& ) :: (Script (), Fd) -> Fd -> Script ()shell-monad Control.Monad.Shell Redirects the first file descriptor to input from the second. For example, to read from Fd 42:
cmd "foo" &stdInput<&Fd 42
(
>& ) :: (Script (), Fd) -> Fd -> Script ()shell-monad Control.Monad.Shell Redirects the first file descriptor to output to the second. For example, to redirect a command's stderr to stdout:
cmd "foo" &stdError>&stdOutput
(
<&> ) :: Functor f => f a -> (a -> b) -> f bverset Verset Flipped version of <$>.
(<&>) = flip fmap
Examples
Apply (+1) to a list, a Just and a Right:>>> Just 2 <&> (+1) Just 3
>>> [1,2,3] <&> (+1) [2,3,4]
>>> Right 3 <&> (+1) Right 4