Hoogle Search

Within LTS Haskell 24.48 (ghc-9.10.3)

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

  1. 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"
    

  2. 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\""
    

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

  4. formatKey :: Format Key r -> r

    influxdb Database.InfluxDB.Format

    Format a Key.

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

  5. formatMeasurement :: Format Measurement r -> r

    influxdb Database.InfluxDB.Format

    Format a Measurement.

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

  6. formatQuery :: Format Query r -> r

    influxdb Database.InfluxDB.Format

    Format a Query.

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

  7. forI_ :: (Foldable t, Monoidal f) => t a -> (a -> f ()) -> f ()

    invertible Control.Invertible.Monoidal

    flip mapI_
    

  8. forward :: Grammar p a b -> a -> ContextError (Propagation p) (GrammarError p) b

    invertible-grammar Data.InvertibleGrammar

    Run Grammar forwards. For Grammar p a b, given a value of type a tries to produce a value of type b, otherwise reports an error with position of type p.

  9. forward :: Grammar p a b -> a -> ContextError (Propagation p) (GrammarError p) b

    invertible-grammar Data.InvertibleGrammar.Base

    Run Grammar forwards. For Grammar p a b, given a value of type a tries to produce a value of type b, otherwise reports an error with position of type p.

  10. forgetReservations :: AppId -> Reservations -> KeterM HostManager ()

    keter Keter.HostManager

    Forget previously made reservations.

Page 171 of many | Previous | Next