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.
type family (a6989586621679541705 :: f a)
<&>@#@$$$ (a6989586621679541706 :: a ~> b) :: f bsingletons-base Data.Functor.Singletons No documentation available.
(
%&& ) :: forall (a :: Bool) (b :: Bool) . Sing a -> Sing b -> Sing (a && b)singletons-base Data.Singletons.Base.TH Conjunction of singletons
(
%&& ) :: forall (a :: Bool) (b :: Bool) . Sing a -> Sing b -> Sing (a && b)singletons-base Prelude.Singletons Conjunction of singletons
(
|>& ) :: (Integral a, FiniteBits a) => Buffer % 1 -> a -> Buffertext-builder-linear Data.Text.Builder.Linear.Buffer Append the lower-case hexadecimal representation of a bounded integral number. Negative numbers are interpreted as their corresponding unsigned number:
>>> :set -XOverloadedStrings -XLinearTypes >>> import Data.Int (Int8, Int16) >>> runBuffer (\b -> b |>& (-1 :: Int8)) == "ff" True >>> runBuffer (\b -> b |>& (-1 :: Int16)) == "ffff" True
(
.&. ) :: BitOps bits => bits -> bits -> bitsbasement Basement.Bits No documentation available.
(
.&. ) :: Bits a => a -> a -> aghc-internal GHC.Internal.Bits Bitwise "and"
(
.&. ) :: Bits a => a -> a -> aghc-internal GHC.Internal.Data.Bits Bitwise "and"
(
<&> ) :: Functor f => f a -> (a -> b) -> f bghc-internal GHC.Internal.Data.Functor 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
(
.&. ) :: Bits a => a -> a -> aprotolude Protolude Bitwise "and"
(
<&&> ) :: Applicative a => a Bool -> a Bool -> a Boolprotolude Protolude.Bool && lifted to an Applicative. Unlike &&^ the operator is not short-circuiting.