Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. data PgPoint

    beam-postgres Database.Beam.Postgres

    No documentation available.

  2. PgPoint :: Double -> Double -> PgPoint

    beam-postgres Database.Beam.Postgres

    No documentation available.

  3. data PgPolygon

    beam-postgres Database.Beam.Postgres

    No documentation available.

  4. PgPolygon :: NonEmpty PgPoint -> PgPolygon

    beam-postgres Database.Beam.Postgres

    No documentation available.

  5. data PgRange n a

    beam-postgres Database.Beam.Postgres

    A range of a given Haskell type (represented by a) stored as a given Postgres Range Type (represented by n). A reasonable example might be Range PgInt8Range Int64. This represents a range of Haskell Int64 values stored as a range of bigint in Postgres.

  6. PgRange :: PgRangeBound a -> PgRangeBound a -> PgRange n a

    beam-postgres Database.Beam.Postgres

    No documentation available.

  7. data PgRangeBound a

    beam-postgres Database.Beam.Postgres

    Represents a single bound on a Range. A bound always has a type, but may not have a value (the absense of a value represents unbounded).

  8. PgRangeBound :: PgBoundType -> Maybe a -> PgRangeBound a

    beam-postgres Database.Beam.Postgres

    No documentation available.

  9. newtype PgRegex

    beam-postgres Database.Beam.Postgres

    The type of Postgres regular expressions. Only a HasSqlValueSyntax instance is supplied, because you won't need to be reading these back from the database. If you're generating regexes dynamically, then use pgRegex_ to convert a string expression into a regex one.

  10. PgRegex :: Text -> PgRegex

    beam-postgres Database.Beam.Postgres

    No documentation available.

Page 1204 of many | Previous | Next