Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. phoneNumberType :: Lens' PhoneNumber Text

    plaid Data.Plaid

    No documentation available.

  2. plaidAuthGetResponseNumbers :: Lens' PlaidAuthGetResponse Numbers

    plaid Data.Plaid

    No documentation available.

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

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

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

    postgresql-typed Database.PostgreSQL.Typed.Enum

    The database name of a value.

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

    postgresql-typed Database.PostgreSQL.Typed.Enum

    Lookup a value matching the given database name.

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

    postgresql-typed Database.PostgreSQL.Typed.Enum

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

  8. unsafe_new_enum_value_usage :: ByteString

    postgresql-typed Database.PostgreSQL.Typed.ErrCodes

    UNSAFE_NEW_ENUM_VALUE_USAGE: 55P04 (Error)

  9. runEnumeration :: Enumeration a -> a

    protobuf Data.ProtocolBuffers.Internal

    No documentation available.

  10. class WireEnum a

    protobuf-simple Data.ProtoBufInt

    Typeclass to handle encoding en decoding of enums.

Page 204 of many | Previous | Next