Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. phoneNumberJson :: ByteString

    plaid Data.Plaid

    No documentation available.

  2. phoneNumberPrimary :: Lens' PhoneNumber Bool

    plaid Data.Plaid

    No documentation available.

  3. phoneNumberType :: Lens' PhoneNumber Text

    plaid Data.Plaid

    No documentation available.

  4. plaidAuthGetResponseNumbers :: Lens' PlaidAuthGetResponse Numbers

    plaid Data.Plaid

    No documentation available.

  5. class (Eq a, Ord a, Enum a, Bounded a, PGRep a) => PGEnum a

    postgresql-typed Database.PostgreSQL.Typed.Enum

    A type based on a PostgreSQL enum. Automatically instantiated by dataPGEnum.

  6. dataPGEnum :: String -> PGName -> (String -> String) -> DecsQ

    postgresql-typed Database.PostgreSQL.Typed.Enum

    Create a new enum type corresponding to the given PostgreSQL enum type. For example, if you have CREATE TYPE foo AS ENUM ('abc', 'DEF'), then dataPGEnum "Foo" "foo" ("Foo_"++) will be equivalent to:

    data Foo = Foo_abc | Foo_DEF deriving (Eq, Ord, Enum, Bounded, Typeable)
    instance PGType "foo" where PGVal "foo" = Foo
    instance PGParameter "foo" Foo where ...
    instance PGColumn "foo" Foo where ...
    instance PGRep Foo where PGRepType = "foo"
    instance PGEnum Foo where pgEnumValues = [(Foo_abc, "abc"), (Foo_DEF, "DEF")]
    
    Requires language extensions: TemplateHaskell, FlexibleInstances, MultiParamTypeClasses, DeriveDataTypeable, DataKinds, TypeFamilies

  7. pgEnumName :: PGEnum a => a -> PGName

    postgresql-typed Database.PostgreSQL.Typed.Enum

    The database name of a value.

  8. pgEnumValue :: PGEnum a => PGName -> Maybe a

    postgresql-typed Database.PostgreSQL.Typed.Enum

    Lookup a value matching the given database name.

  9. pgEnumValues :: PGEnum a => [(a, PGName)]

    postgresql-typed Database.PostgreSQL.Typed.Enum

    List of all the values in the enum along with their database names.

  10. unsafe_new_enum_value_usage :: ByteString

    postgresql-typed Database.PostgreSQL.Typed.ErrCodes

    UNSAFE_NEW_ENUM_VALUE_USAGE: 55P04 (Error)

Page 201 of many | Previous | Next