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 -> Doc -> Doc

    ghc GHC.Utils.Ppr

    Beside. <> is associative, with identity empty.

  2. (<>) :: forall s e (pre :: [WasmType]) (mid :: [WasmType]) (post :: [WasmType]) . WasmControl s e pre mid -> WasmControl s e mid post -> WasmControl s e pre post

    ghc GHC.Wasm.ControlFlow

    No documentation available.

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

    fast-logger System.Log.FastLogger.Internal

    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

    generic-deriving Generics.Deriving.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!
    

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

    ansi-wl-pprint Text.PrettyPrint.ANSI.Leijen

    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. (<>) :: Numeric t => Matrix t -> Matrix t -> Matrix t

    hmatrix Numeric.LinearAlgebra

    dense matrix product

    >>> let a = (3><5) [1..]
    
    >>> a
    (3><5)
    [  1.0,  2.0,  3.0,  4.0,  5.0
    ,  6.0,  7.0,  8.0,  9.0, 10.0
    , 11.0, 12.0, 13.0, 14.0, 15.0 ]
    
    >>> let b = (5><2) [1,3, 0,2, -1,5, 7,7, 6,0]
    
    >>> b
    (5><2)
    [  1.0, 3.0
    ,  0.0, 2.0
    , -1.0, 5.0
    ,  7.0, 7.0
    ,  6.0, 0.0 ]
    
    >>> a <> b
    (3><2)
    [  56.0,  50.0
    , 121.0, 135.0
    , 186.0, 220.0 ]
    

  7. (<>) :: forall (m :: Nat) (k :: Nat) (n :: Nat) . (KnownNat m, KnownNat k, KnownNat n) => L m k -> L k n -> L m n

    hmatrix Numeric.LinearAlgebra.Static

    No documentation available.

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

    rio RIO.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!
    

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

    string-conversions Data.String.Conversions

    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!
    

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

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

Page 3 of many | Previous | Next