Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (<+>) :: Applicative m => m Doc -> m Doc -> m Doc

    wl-pprint-text Text.PrettyPrint.Leijen.Text.Monadic

    The document (x <+> y) concatenates document x and y with a space in between. (infixr 6)

  2. (-++-) :: Expr -> Expr -> Expr

    express Data.Express.Fixtures

    List concatenation lifted over the Expr type. Works for the element types Int, Char and Bool.

    > (zero -:- one -:- nil) -:- (two -:- three -:- nil)
    [0,1] -++- [2,3] :: [Int]
    
    > (bee -:- unit cee) -:- unit dee
    "bc" -++- "c" :: [Char]
    

  3. (-+-) :: Expr -> Expr -> Expr

    express Data.Express.Fixtures

    The operator + for the Int type for use on Exprs. (See also plus.)

    > two -+- three
    2 + 3 :: Int
    
    > minusOne -+- minusTwo -+- zero
    ((-1) + (-2)) + 0 :: Int
    
    > xx -+- (yy -+- zz)
    x + (y + z) :: Int
    

  4. (|++|) :: DecsQ -> DecsQ -> DecsQ

    express Data.Express.Utils.TH

    No documentation available.

  5. (:+) :: Expr -> Expr -> Expr

    ghc-typelits-presburger GHC.TypeLits.Presburger.Types

    Addition

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

    rebase Rebase.Prelude

    An associative operation with identity zeroArrow.

  7. (<+>) :: Doc a -> Doc a -> Doc a

    wl-pprint-annotated Text.PrettyPrint.Annotated.WL

    No documentation available.

  8. (^+^) :: (Additive f, Num a) => f a -> f a -> f a

    Rasterific Graphics.Rasterific.Linear

    Compute the sum of two vectors

    >>> V2 1 2 ^+^ V2 3 4
    V2 4 6
    

  9. (:+) :: Integer -> Integer -> EisensteinInteger

    arithmoi Math.NumberTheory.Quadratic.EisensteinIntegers

    No documentation available.

  10. (:+) :: Integer -> Integer -> GaussianInteger

    arithmoi Math.NumberTheory.Quadratic.GaussianIntegers

    No documentation available.

Page 52 of many | Previous | Next