Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. newtype (a :: Nat) :=:# (b :: Nat)

    natural-arithmetic Arithmetic.Unsafe

    No documentation available.

  2. pattern (:<) :: Ord a => a -> MinQueue a -> MinQueue a

    pqueue Data.PQueue.Min

    A bidirectional pattern synonym for working with the minimum view of a MinQueue. Using :< to construct a queue performs an insertion in <math> amortized time. When matching on a :< q, forcing q takes <math> time.

  3. pattern (:<) :: Ord k => (k, a) -> MinPQueue k a -> MinPQueue k a

    pqueue Data.PQueue.Prio.Min

    A bidirectional pattern synonym for working with the minimum view of a MinPQueue. Using :< to construct a queue performs an insertion in <math> amortized time. When matching on (k, a) :< q, forcing q takes <math> time.

  4. data h :. t

    sqlite-simple Database.SQLite.Simple

    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
    ....
    

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

    sqlite-simple Database.SQLite.Simple

    No documentation available.

  6. (:=) :: forall v . ToField v => Text -> v -> NamedParam

    sqlite-simple Database.SQLite.Simple

    No documentation available.

  7. 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
    ....
    

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

    sqlite-simple Database.SQLite.Simple.Types

    No documentation available.

  9. type family x :&&: y

    tfp Type.Data.Bool

    No documentation available.

  10. type family x :||: y

    tfp Type.Data.Bool

    No documentation available.

Page 26 of many | Previous | Next