Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

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

  1. formFields :: forall form (val :: Type -> Type) . Form form val => form (FormField val)

    hyperbole Web.Hyperbole.View.Forms

    Generate FormFields for the given instance of Form, with no validation information. See Example.Page.FormSimple

    #EMBED Example/Page/FormSimple.hs data ContactForm
    
    #EMBED Example/Page/FormSimple.hs formView
    

  2. formFieldsWith :: forall form (val :: Type -> Type) . Form form val => form val -> form (FormField val)

    hyperbole Web.Hyperbole.View.Forms

    Generate FormFields for the given instance of Form from validation data. See Example.Page.FormValidation

    #EMBED Example/Page/FormValidation.hs data UserForm
    #EMBED Example/Page/FormValidation.hs instance Form UserForm
    
    #EMBED Example/Page/FormValidation.hs formView
    

  3. formLookupParam :: FromParam a => Param -> Form -> Either Text (Maybe a)

    hyperbole Web.Hyperbole.View.Forms

    No documentation available.

  4. formParse :: Form form val => Form -> Either Text (form Identity)

    hyperbole Web.Hyperbole.View.Forms

    No documentation available.

  5. formParseParam :: FromParam a => Param -> Form -> Either Text a

    hyperbole Web.Hyperbole.View.Forms

    No documentation available.

  6. formatDatabase :: Format Database r -> r

    influxdb Database.InfluxDB

    Format a Database.

    >>> F.formatDatabase "test-db"
    "test-db"
    
    >>> F.formatDatabase ("test-db-"%F.decimal) 0
    "test-db-0"
    

  7. formatKey :: Format Key r -> r

    influxdb Database.InfluxDB

    Format a Key.

    >>> F.formatKey "test-key"
    "test-key"
    
    >>> F.formatKey ("test-key-"%F.decimal) 0
    "test-key-0"
    

  8. formatMeasurement :: Format Measurement r -> r

    influxdb Database.InfluxDB

    Format a Measurement.

    >>> F.formatMeasurement "test-series"
    "test-series"
    
    >>> F.formatMeasurement ("test-series-"%F.decimal) 0
    "test-series-0"
    

  9. formatQuery :: Format Query r -> r

    influxdb Database.InfluxDB

    Format a Query.

    >>> F.formatQuery "SELECT * FROM series"
    "SELECT * FROM series"
    
    >>> F.formatQuery ("SELECT * FROM "%F.key) "series"
    "SELECT * FROM \"series\""
    

  10. formatDatabase :: Format Database r -> r

    influxdb Database.InfluxDB.Format

    Format a Database.

    >>> F.formatDatabase "test-db"
    "test-db"
    
    >>> F.formatDatabase ("test-db-"%F.decimal) 0
    "test-db-0"
    

Page 170 of many | Previous | Next