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.

  1. (+~) :: [a] -> Stream a -> Stream a

    xmonad-contrib XMonad.Prelude

    Absorb a list into an infinite stream.

  2. (<+>) :: ArrowPlus a => a b c -> a b c -> a b c

    base Control.Arrow

    An associative operation with identity zeroArrow.

  3. (:+) :: a -> a -> Complex a

    base Data.Complex

    forms a complex number from its real and imaginary rectangular components.

  4. (<++) :: ReadP a -> ReadP a -> ReadP a

    base Text.ParserCombinators.ReadP

    Local, exclusive, left-biased choice: If left parser locally produces any result at all, then right parser is not used.

  5. (<++) :: ReadPrec a -> ReadPrec a -> ReadPrec a

    base Text.ParserCombinators.ReadPrec

    Local, exclusive, left-biased choice: If left parser locally produces any result at all, then right parser is not used.

  6. data ((f :: k -> Type) :+: (g :: k -> Type)) (p :: k)

    base GHC.Generics

    Sums: encode choice between constructors

  7. ($+$) :: Doc -> Doc -> Doc

    template-haskell Language.Haskell.TH.PprLib

    No documentation available.

  8. (<+>) :: Doc -> Doc -> Doc

    template-haskell Language.Haskell.TH.PprLib

    No documentation available.

  9. (<+=) :: (MonadState s m, Num a) => LensLike' ((,) a) s a -> a -> m a

    lens 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
    

  10. (<+~) :: 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)
    

Page 37 of many | Previous | Next