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. formatterDone :: Formatter -> FormatM ()

    hspec-api Test.Hspec.Api.Formatters.V3

    No documentation available.

  2. formatterGroupDone :: Formatter -> Path -> FormatM ()

    hspec-api Test.Hspec.Api.Formatters.V3

    No documentation available.

  3. formatterGroupStarted :: Formatter -> Path -> FormatM ()

    hspec-api Test.Hspec.Api.Formatters.V3

    No documentation available.

  4. formatterItemDone :: Formatter -> Path -> Item -> FormatM ()

    hspec-api Test.Hspec.Api.Formatters.V3

    No documentation available.

  5. formatterItemStarted :: Formatter -> Path -> FormatM ()

    hspec-api Test.Hspec.Api.Formatters.V3

    No documentation available.

  6. formatterProgress :: Formatter -> Path -> Progress -> FormatM ()

    hspec-api Test.Hspec.Api.Formatters.V3

    No documentation available.

  7. formatterStarted :: Formatter -> FormatM ()

    hspec-api Test.Hspec.Api.Formatters.V3

    No documentation available.

  8. formatterToFormat :: Formatter -> FormatConfig -> IO Format

    hspec-api Test.Hspec.Api.Formatters.V3

    No documentation available.

  9. formatAsIso8601 :: UTCTime -> Text

    katip Katip.Format.Time

    Format UTCTime into a Iso8601 format. Note that this function may overcommit up to 12*2 bytes, depending on sub-second precision. If this is an issue, make a copy with a copy.

    >>> formatAsIso8601 $ UTCTime (fromGregorian 2016 1 23) 5025.123456789012
    "2016-11-23T01:23:45.123456789012Z"
    
    >>> formatAsIso8601 $ UTCTime (fromGregorian 2016 1 23) 5025.123
    "2016-01-23T01:23:45.123Z"
    
    >>> formatAsIso8601 $ UTCTime (fromGregorian 2016 1 23) 5025
    "2016-01-23T01:23:45Z"
    

  10. formatAsLogTime :: UTCTime -> Text

    katip Katip.Format.Time

    Format UTCTime into a short human readable format.

    >>> formatAsLogTime $ UTCTime (fromGregorian 2016 1 23) 5025.123456789012
    "2016-01-23 01:23:45"
    

Page 122 of many | Previous | Next