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. data h :. t

    sqlite-simple Database.SQLite.Simple.Types

    A composite type to parse your custom data structures without having to define dummy newtype wrappers every time.

    instance FromRow MyData where ...
    
    instance FromRow MyData2 where ...
    
    then I can do the following for free:
    res <- query' c "..."
    forM res $ \(MyData{..} :. MyData2{..}) -> do
    ....
    

  2. (:.) :: h -> t -> (:.) h t

    sqlite-simple Database.SQLite.Simple.Types

    No documentation available.

  3. (@.@) :: (HasTrie a, HasTrie b) => (b :->: c) -> (a :->: b) -> a :->: c

    MemoTrie Data.MemoTrie

    Trie composition

  4. (&&.) :: BeamSqlBackend be => QGenExpr context be s Bool -> QGenExpr context be s Bool -> QGenExpr context be s Bool

    beam-core Database.Beam.Query

    SQL AND operator

  5. (&&?.) :: BeamSqlBackend be => QGenExpr context be s SqlBool -> QGenExpr context be s SqlBool -> QGenExpr context be s SqlBool

    beam-core Database.Beam.Query

    SQL AND operator for SqlBool

  6. (**.) :: (Floating a, BeamSqlBackend be, BeamSqlT621Backend be) => QGenExpr ctxt be s a -> QGenExpr ctxt be s a -> QGenExpr ctxt be s a

    beam-core Database.Beam.Query

    No documentation available.

  7. (/=*.) :: SqlEqQuantified expr quantified a => a -> quantified -> expr SqlBool

    beam-core Database.Beam.Query

    Quantified equality and inequality using SQL semantics (tri-state boolean)

  8. (/=.) :: SqlEq expr a => a -> a -> expr Bool

    beam-core Database.Beam.Query

    Given two expressions, returns whether they are not equal, using Haskell semantics (NULLs handled properly)

  9. (/=?.) :: SqlEq expr a => a -> a -> expr SqlBool

    beam-core Database.Beam.Query

    Given two expressions, returns the SQL tri-state boolean when compared for inequality

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

    beam-core Database.Beam.Query

    No documentation available.

Page 126 of many | Previous | Next