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. data FormFieldState s e n

    brick Brick.Forms

    A form field state accompanied by the fields that manipulate that state. The idea is that some record field in your form state has one or more form fields that manipulate that value. This data type maps that state field (using a lens into your state) to the form input fields responsible for managing that state field, along with a current value for that state field and an optional function to control how the form inputs are rendered. Most form fields will just have one input, such as text editors, but others, such as radio button collections, will have many, which is why this type supports more than one input corresponding to a state field. Type variables are as follows:

    • s - the data type containing the value manipulated by these form fields.
    • e - your application's event type
    • n - your application's resource name type

  2. FormFieldState :: forall b s a e n . b -> Lens' s a -> (a -> b -> b) -> [FormField a b e n] -> (Widget n -> Widget n) -> ([Widget n] -> Widget n) -> FormFieldVisibilityMode -> FormFieldState s e n

    brick Brick.Forms

    No documentation available.

  3. data FormFieldVisibilityMode

    brick Brick.Forms

    How to bring form fields into view when a form is rendered in a viewport with viewport.

  4. ForShare :: LockingKind

    esqueleto Database.Esqueleto

    Deprecated: The constructors for LockingKind are deprecated in v3.6.0.0. Instead, please refer to the smart constructor forShare exported from Database.Esqueleto.PostgreSQL.

  5. ForUpdate :: LockingKind

    esqueleto Database.Esqueleto

    Deprecated: The constructors for LockingKind are deprecated in v3.6.0.0. Instead, please refer to the smart constructors forUpdate and forUpdateSkipLocked.

  6. ForUpdateSkipLocked :: LockingKind

    esqueleto Database.Esqueleto

    Deprecated: The constructors for LockingKind are deprecated in v3.6.0.0. Instead, please refer to the smart constructors forUpdate and forUpdateSkipLocked.

  7. data ForeignDef

    esqueleto Database.Esqueleto

    No documentation available.

  8. ForeignDef :: EntityNameHS -> EntityNameDB -> ConstraintNameHS -> ConstraintNameDB -> FieldCascade -> [(ForeignFieldDef, ForeignFieldDef)] -> [Attr] -> Bool -> Bool -> ForeignDef

    esqueleto Database.Esqueleto

    No documentation available.

  9. type ForeignFieldDef = (FieldNameHS, FieldNameDB)

    esqueleto Database.Esqueleto

    Used instead of FieldDef to generate a smaller amount of code

  10. ForeignRef :: EntityNameHS -> ReferenceDef

    esqueleto Database.Esqueleto

    A ForeignRef has a late binding to the EntityDef it references via name and has the Haskell type of the foreign key in the form of FieldType

Page 285 of many | Previous | Next