Hoogle Search
Within LTS Haskell 24.49 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
+~ ) :: [a] -> Stream a -> Stream axmonad-contrib XMonad.Prelude Absorb a list into an infinite stream.
(
<+> ) :: ArrowPlus a => a b c -> a b c -> a b cbase Control.Arrow An associative operation with identity zeroArrow.
-
base Data.Complex forms a complex number from its real and imaginary rectangular components.
(
<++ ) :: ReadP a -> ReadP a -> ReadP abase Text.ParserCombinators.ReadP Local, exclusive, left-biased choice: If left parser locally produces any result at all, then right parser is not used.
(
<++ ) :: ReadPrec a -> ReadPrec a -> ReadPrec abase Text.ParserCombinators.ReadPrec Local, exclusive, left-biased choice: If left parser locally produces any result at all, then right parser is not used.
data ((f :: k -> Type)
:+: (g :: k -> Type)) (p :: k)base GHC.Generics Sums: encode choice between constructors
-
template-haskell Language.Haskell.TH.PprLib No documentation available.
-
template-haskell Language.Haskell.TH.PprLib No documentation available.
(
<+= ) :: (MonadState s m, Num a) => LensLike' ((,) a) s a -> a -> m alens Control.Lens.Lens Add to the target of a numerically valued Lens into your Monad's state and return the result. When you do not need the result of the addition, (+=) is more flexible.
(<+=) :: (MonadState s m, Num a) => Lens' s a -> a -> m a (<+=) :: (MonadState s m, Num a) => Iso' s a -> a -> m a
(
<+~ ) :: Num a => LensLike ((,) a) s t a a -> a -> s -> (a, t)lens Control.Lens.Lens Increment the target of a numerically valued Lens and return the result. When you do not need the result of the addition, (+~) is more flexible.
(<+~) :: Num a => Lens' s a -> a -> s -> (a, s) (<+~) :: Num a => Iso' s a -> a -> s -> (a, s)