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.
(
<> ) :: Builder -> Builder -> Builderformatting Formatting.Internal.Raw The normal mappend function with right associativity instead of left.
(
<> ) :: Semigroup a => a -> a -> aghc-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!
(
<> ) :: Semigroup a => a -> a -> aghc-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!
-
boxes Text.PrettyPrint.Boxes Paste two boxes together horizontally, using a default (top) alignment.
(
<> ) :: Semigroup a => a -> a -> anumhask 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!
(
<> ) :: Semigroup a => a -> a -> anumhask 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!
(
<> ) :: Semigroup a => a -> a -> abasic-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!
(
<> ) :: Semigroup a => a -> a -> aclassy-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!
-
ghc-lib-parser GHC.Boot.TH.PprLib No documentation available.
(
<> ) :: IsLine doc => doc -> doc -> docghc-lib-parser GHC.Utils.Outputable Join two docs together horizontally without a gap.