Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. data PersistUpdate

    esqueleto Database.Esqueleto.Legacy

    No documentation available.

  2. data PersistValue

    esqueleto Database.Esqueleto.Legacy

    A raw value which can be stored in any backend and can be marshalled to and from a PersistField.

  3. data PersistentSqlException

    esqueleto Database.Esqueleto.Legacy

    No documentation available.

  4. PrefixExcluded :: FilterTablePrefix

    esqueleto Database.Esqueleto.Legacy

    Prefix the column name with the EXCLUDED keyword. This is used with the Postgresql backend when doing ON CONFLICT DO UPDATE clauses - see the documentation on upsertWhere and upsertManyWhere.

  5. PrefixTableName :: FilterTablePrefix

    esqueleto Database.Esqueleto.Legacy

    Prefix the column with the table name. This is useful if the column name might be ambiguous.

  6. module Database.Esqueleto.PostgreSQL

    This module contain PostgreSQL-specific functions.

  7. class Profunctor (p :: Type -> Type -> Type)

    essence-of-live-coding LiveCoding

    Formally, the class Profunctor represents a profunctor from Hask -> Hask. Intuitively it is a bifunctor where the first argument is contravariant and the second argument is covariant. You can define a Profunctor by either defining dimap or by defining both lmap and rmap. If you supply dimap, you should ensure that:

    dimap id idid
    
    If you supply lmap and rmap, ensure:
    lmap idid
    rmap idid
    
    If you supply both, you should also ensure:
    dimap f g ≡ lmap f . rmap g
    
    These ensure by parametricity:
    dimap (f . g) (h . i) ≡ dimap g h . dimap f i
    lmap (f . g) ≡ lmap g . lmap f
    rmap (f . g) ≡ rmap f . rmap g
    

  8. data Parallel stateP1 stateP2

    essence-of-live-coding LiveCoding.Cell

    No documentation available.

  9. Parallel :: stateP1 -> stateP2 -> Parallel stateP1 stateP2

    essence-of-live-coding LiveCoding.Cell

    No documentation available.

  10. Pop :: BufferCommand a

    essence-of-live-coding LiveCoding.Cell.Util

    Remove the oldest element from the buffer.

Page 497 of many | Previous | Next