Hoogle Search

Within Stackage Nightly 2025-10-12 (ghc-9.12.2)

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

  1. autoDbSettings' :: GAutoDbSettings x => x

    beam-core Database.Beam.Schema.Tables

    No documentation available.

  2. defTblFieldSettings :: (Generic (TableSettings table), GDefaultTableFieldSettings (Rep (TableSettings table) ())) => TableSettings table

    beam-core Database.Beam.Schema.Tables

    Return a TableSettings for the appropriate table type where each column has been given its default name. See the manual for information on the default naming convention.

  3. defaultDbSettings :: (Generic (DatabaseSettings be db), GAutoDbSettings (Rep (DatabaseSettings be db) ())) => DatabaseSettings be db

    beam-core Database.Beam.Schema.Tables

    Automatically provide names for tables, and descriptions for tables (using defTblFieldSettings). Your database must implement Generic, and must be auto-derivable. For more information on name generation, see the manual

  4. gDefTblFieldSettings :: GDefaultTableFieldSettings x => Proxy x -> x

    beam-core Database.Beam.Schema.Tables

    No documentation available.

  5. offset :: ParseError -> ByteOffset

    binary-conduit Data.Conduit.Serialization.Binary

    Number of bytes consumed from single stream input value.

  6. module Data.CharSet

    A CharSet is an efficient representation of a set of Char values designed for fast membership tests. As an example build isAlpha will create a set of alphabetic characters. We can then use member on the generated set to efficiently test if a given Char represents an alphabetic character. Designed to be imported qualified:

    import Data.CharSet (CharSet)
    import qualified Data.CharSet as CharSet
    

  7. data CharSet

    charset Data.CharSet

    Stored as a (possibly negated) IntSet and a fast set used for the head byte. The set of valid (possibly negated) head bytes is stored unboxed as a 32-byte bytestring-based lookup table.

  8. CharSet :: Bool -> ByteSet -> IntSet -> CharSet

    charset Data.CharSet

    No documentation available.

  9. fromCharSet :: CharSet -> (Bool, IntSet)

    charset Data.CharSet

    No documentation available.

  10. isSubsetOf :: CharSet -> CharSet -> Bool

    charset Data.CharSet

    No documentation available.

Page 116 of many | Previous | Next