Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. (>=*.) :: SqlOrdQuantified expr quantified e => e -> quantified -> expr Bool

    beam-core Database.Beam.Query

    No documentation available.

  2. (>=.) :: SqlOrd expr e => e -> e -> expr Bool

    beam-core Database.Beam.Query

    No documentation available.

  3. (||.) :: BeamSqlBackend be => QGenExpr context be s Bool -> QGenExpr context be s Bool -> QGenExpr context be s Bool

    beam-core Database.Beam.Query

    SQL OR operator

  4. (||?.) :: BeamSqlBackend be => QGenExpr context be s SqlBool -> QGenExpr context be s SqlBool -> QGenExpr context be s SqlBool

    beam-core Database.Beam.Query

    SQL OR operator

  5. (--..) :: (Expr, Expr) -> () -> Expr

    express Data.Express.Fixtures

    enumFromThen lifted over Exprs but named as ",.." for pretty printing.

    > (zero,ten) --.. ()
    [0,10..] :: [Int]
    

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

    express Data.Express.Fixtures

    enumFromThenTo lifted over Exprs but named as ",.." for pretty-printing.

    > (zero,two) --..- ten
    [0,2..10] :: [Int]
    

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

    express Data.Express.Fixtures

    Function composition . lifted over Expr.

    > absE -.- negateE
    abs . negate :: Int -> Int
    
    > absE -.- negateE :$ one
    (abs . negate) 1 :: Int
    
    This works for Int, Bool, Char and their lists.

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

    express Data.Express.Fixtures

    enumFrom lifted over Exprs named as ".." for pretty-printing.

    > one -.. ()
    [1..] :: [Int]
    
    Works for Ints, Bools and Chars.

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

    express Data.Express.Fixtures

    enumFromTo lifted over Exprs but named as ".." for pretty-printing.

    > zero -..- four
    [0..4] :: [Int]
    

  10. (>.<) :: Space s => Element s -> Element s -> s

    numhask-space NumHask.Space

    create a space from two elements without normalising

Page 128 of many | Previous | Next