Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. (<>) :: Builder -> Builder -> Builder

    formatting Formatting.Internal.Raw

    The normal mappend function with right associativity instead of left.

  2. (<>) :: Semigroup a => a -> a -> a

    ghc-internal GHC.Internal.Base

    An associative operation.

    Examples

    >>> [1,2,3] <> [4,5,6]
    [1,2,3,4,5,6]
    
    >>> Just [1, 2, 3] <> Just [4, 5, 6]
    Just [1,2,3,4,5,6]
    
    >>> putStr "Hello, " <> putStrLn "World!"
    Hello, World!
    

  3. (<>) :: Semigroup a => a -> a -> a

    ghc-internal GHC.Internal.Data.Monoid

    An associative operation.

    Examples

    >>> [1,2,3] <> [4,5,6]
    [1,2,3,4,5,6]
    
    >>> Just [1, 2, 3] <> Just [4, 5, 6]
    Just [1,2,3,4,5,6]
    
    >>> putStr "Hello, " <> putStrLn "World!"
    Hello, World!
    

  4. (<>) :: Box -> Box -> Box

    boxes Text.PrettyPrint.Boxes

    Paste two boxes together horizontally, using a default (top) alignment.

  5. (<>) :: Semigroup a => a -> a -> a

    numhask NumHask.Prelude

    An associative operation.

    Examples

    >>> [1,2,3] <> [4,5,6]
    [1,2,3,4,5,6]
    
    >>> Just [1, 2, 3] <> Just [4, 5, 6]
    Just [1,2,3,4,5,6]
    
    >>> putStr "Hello, " <> putStrLn "World!"
    Hello, World!
    

  6. (<>) :: Semigroup a => a -> a -> a

    numhask NumHask.Prelude

    An associative operation.

    Examples

    >>> [1,2,3] <> [4,5,6]
    [1,2,3,4,5,6]
    
    >>> Just [1, 2, 3] <> Just [4, 5, 6]
    Just [1,2,3,4,5,6]
    
    >>> putStr "Hello, " <> putStrLn "World!"
    Hello, World!
    

  7. (<>) :: Semigroup a => a -> a -> a

    basic-prelude CorePrelude

    An associative operation.

    Examples

    >>> [1,2,3] <> [4,5,6]
    [1,2,3,4,5,6]
    
    >>> Just [1, 2, 3] <> Just [4, 5, 6]
    Just [1,2,3,4,5,6]
    
    >>> putStr "Hello, " <> putStrLn "World!"
    Hello, World!
    

  8. (<>) :: Semigroup a => a -> a -> a

    classy-prelude ClassyPrelude

    An associative operation.

    Examples

    >>> [1,2,3] <> [4,5,6]
    [1,2,3,4,5,6]
    
    >>> Just [1, 2, 3] <> Just [4, 5, 6]
    Just [1,2,3,4,5,6]
    
    >>> putStr "Hello, " <> putStrLn "World!"
    Hello, World!
    

  9. (<>) :: Doc -> Doc -> Doc

    ghc-lib-parser GHC.Boot.TH.PprLib

    No documentation available.

  10. (<>) :: IsLine doc => doc -> doc -> doc

    ghc-lib-parser GHC.Utils.Outputable

    Join two docs together horizontally without a gap.

Page 5 of many | Previous | Next