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.
-
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 .... -
sqlite-simple Database.SQLite.Simple.Types No documentation available.
(
@.@ ) :: (HasTrie a, HasTrie b) => (b :->: c) -> (a :->: b) -> a :->: cMemoTrie Data.MemoTrie Trie composition
-
beam-core Database.Beam.Query SQL AND operator
-
beam-core Database.Beam.Query SQL AND operator for SqlBool
-
beam-core Database.Beam.Query No documentation available.
(
/=*. ) :: SqlEqQuantified expr quantified a => a -> quantified -> expr SqlBoolbeam-core Database.Beam.Query Quantified equality and inequality using SQL semantics (tri-state boolean)
(
/=. ) :: SqlEq expr a => a -> a -> expr Boolbeam-core Database.Beam.Query Given two expressions, returns whether they are not equal, using Haskell semantics (NULLs handled properly)
(
/=?. ) :: SqlEq expr a => a -> a -> expr SqlBoolbeam-core Database.Beam.Query Given two expressions, returns the SQL tri-state boolean when compared for inequality
(
<*. ) :: SqlOrdQuantified expr quantified e => e -> quantified -> expr Boolbeam-core Database.Beam.Query No documentation available.