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

    pretty Text.PrettyPrint.Annotated.HughesPJ

    Beside. <> is associative, with identity empty.

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

    pretty Text.PrettyPrint.HughesPJ

    Beside. <> is associative, with identity empty.

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

    hedgehog Hedgehog.Internal.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!
    

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

    hedgehog Hedgehog.Internal.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!
    

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

    prettyprinter Prettyprinter

    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

    base-compat Data.Monoid.Compat

    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

    base-compat Data.Semigroup.Compat

    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

    validity Data.Validity

    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. (<>) :: Monoid m => m -> m -> m

    utility-ht Data.Monoid.HT

    Infix synonym for mappend.

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

    ghc GHC.Utils.Outputable

    Join two docs together horizontally without a gap.

Page 2 of many | Previous | Next