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

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

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

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

    invertible Control.Invertible.Monoidal

    flip mapI_
    

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

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

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

    keter Keter.HostManager

    Forget previously made reservations.

  8. fork :: forall a m . MonadUnliftIO m => Scope -> m a -> m (Thread a)

    ki-unlifted Ki.Unlifted

    No documentation available.

  9. forkTry :: (Exception e, MonadUnliftIO m) => Scope -> m a -> m (Thread (Either e a))

    ki-unlifted Ki.Unlifted

    No documentation available.

  10. forkTryWith :: (Exception e, MonadUnliftIO m) => Scope -> ThreadOptions -> m a -> m (Thread (Either e a))

    ki-unlifted Ki.Unlifted

    No documentation available.

Page 171 of many | Previous | Next