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

    ghc-lib-parser GHC.Utils.Ppr

    Beside, separated by space, unless one of the arguments is empty. <+> is associative, with identity empty.

  2. type family x :+: y

    tfp Type.Data.Num

    No documentation available.

  3. type family x :+: y

    tfp Type.Data.Num.Decimal.Number

    No documentation available.

  4. type family x :+: y

    tfp Type.Data.Num.Unary

    No documentation available.

  5. type (ts :: Set Type) :+: (ts' :: Set Type) = Merge ts ts'

    type-set Data.Type.Set

    No documentation available.

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

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

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

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

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

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

  8. (<++>) :: 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 spacebreak in between. (infixr 6)

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

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

Page 51 of many | Previous | Next