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.
(
<> ) :: Semigroup a => a -> a -> abase 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 -> abase 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!
(
<> ) :: Semigroup a => a -> a -> abase 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!
(
<> ) :: Semigroup a => a -> a -> abase 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!
(
<> ) :: Builder -> Builder -> Buildertext Data.Text.Internal.Builder.Functions The normal mappend function with right associativity instead of left.
-
template-haskell Language.Haskell.TH.PprLib No documentation available.
(
<> ) :: Semigroup a => a -> a -> aattoparsec 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!
(
<> ) :: Semigroup a => a -> a -> aoptparse-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!
-
pretty Text.PrettyPrint (
<> ) :: Doc a -> Doc a -> Doc apretty Text.PrettyPrint.Annotated
Page 1 of many | Next