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. (<>) :: Semigroup a => a -> a -> a

    base 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!
    

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

    base 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!
    

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

    base Data.Semigroup

    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. (<>) :: Semigroup a => a -> a -> a

    base GHC.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!
    

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

    text Data.Text.Internal.Builder.Functions

    The normal mappend function with right associativity instead of left.

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

    template-haskell Language.Haskell.TH.PprLib

    No documentation available.

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

    attoparsec Data.Attoparsec.Internal.Types

    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

    optparse-applicative Options.Applicative.Help.Pretty

    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

    pretty Text.PrettyPrint

    Beside. <> is associative, with identity empty.

  10. (<>) :: Doc a -> Doc a -> Doc a

    pretty Text.PrettyPrint.Annotated

    Beside. <> is associative, with identity empty.

Page 1 of many | Next