Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (^+^) :: Vec -> Vec -> Vec

    LPFP LPFP.SimpleVec

    Vector addition.

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

    annotated-wl-pprint Text.PrettyPrint.Annotated.Leijen

    The document (x <+> y) concatenates document x and y with a space in between. (infixr 6)

  3. (-+-) :: QGenExpr context Postgres s (PgRange n a) -> QGenExpr context Postgres s (PgRange n a) -> QGenExpr context Postgres s (PgRange n a)

    beam-postgres Database.Beam.Postgres

    No documentation available.

  4. (<++) :: ReadP a a -> ReadP r a -> ReadP r a

    cabal-install Distribution.Deprecated.ReadP

    Local, exclusive, left-biased choice: If left parser locally produces any result at all, then right parser is not used.

  5. (<+>) :: Applicative f => f Doc -> f Doc -> f Doc

    clash-lib Data.Text.Prettyprint.Doc.Extra

    No documentation available.

  6. (-++-) :: Expr -> Expr -> Expr

    code-conjure Conjure.Engine

    List concatenation lifted over the Expr type. Works for the element types Int, Char and Bool.

    > (zero -:- one -:- nil) -:- (two -:- three -:- nil)
    [0,1] -++- [2,3] :: [Int]
    
    > (bee -:- unit cee) -:- unit dee
    "bc" -++- "c" :: [Char]
    

  7. (-+-) :: Expr -> Expr -> Expr

    code-conjure Conjure.Engine

    The operator + for the Int type for use on Exprs. (See also plus.)

    > two -+- three
    2 + 3 :: Int
    
    > minusOne -+- minusTwo -+- zero
    ((-1) + (-2)) + 0 :: Int
    
    > xx -+- (yy -+- zz)
    x + (y + z) :: Int
    

  8. (-++-) :: Expr -> Expr -> Expr

    code-conjure Conjure.Expr

    List concatenation lifted over the Expr type. Works for the element types Int, Char and Bool.

    > (zero -:- one -:- nil) -:- (two -:- three -:- nil)
    [0,1] -++- [2,3] :: [Int]
    
    > (bee -:- unit cee) -:- unit dee
    "bc" -++- "c" :: [Char]
    

  9. (-+-) :: Expr -> Expr -> Expr

    code-conjure Conjure.Expr

    The operator + for the Int type for use on Exprs. (See also plus.)

    > two -+- three
    2 + 3 :: Int
    
    > minusOne -+- minusTwo -+- zero
    ((-1) + (-2)) + 0 :: Int
    
    > xx -+- (yy -+- zz)
    x + (y + z) :: Int
    

  10. (|+|) :: (C sh, Eq sh, Floating a) => Vector sh a -> Vector sh a -> Vector sh a

    comfort-blas Numeric.BLAS.Vector

    forVector2 number_ $ \xs ys -> xs |+| ys == ys |+| xs
    
    forVector2 number_ $ \xs ys -> xs == xs |-| ys |+| ys
    

Page 65 of many | Previous | Next