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. (<>) :: forall (m :: Nat) (k :: Nat) (n :: Nat) s . (KnownNat m, KnownNat k, KnownNat n, Reifies s W) => BVar s (L m k) -> BVar s (L k n) -> BVar s (L m n)

    hmatrix-backprop Numeric.LinearAlgebra.Static.Backprop

    Matrix product

  2. (<>) :: ToJExpr a => JExpr -> a -> JExpr

    jmacro Language.Javascript.JMacro.Util

    No documentation available.

  3. (<>) :: Mult a b c => a -> b -> c

    learn-physics Physics.Learn.Ket

    No documentation available.

  4. (<>) :: Matrix C -> Matrix C -> Matrix C

    learn-physics Physics.Learn.QuantumMat

    Matrix product.

  5. (<>) :: Ord a => Bra a -> Ket a -> Scalar

    numeric-quest QuantumVector

    No documentation available.

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

    prettyprinter-compat-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!
    

  7. (<>) :: Numeric t => Matrix t -> Matrix t -> Matrix t

    qchas QC

    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 ]
    

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

    yesod-auth-oauth2 Yesod.Auth.OAuth2.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

    classy-prelude-yesod ClassyPrelude.Yesod

    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

    constrained-categories Control.Category.Constrained.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!
    

Page 9 of many | Previous | Next