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.
formatterDone :: Formatter -> FormatM ()hspec-api Test.Hspec.Api.Formatters.V3 No documentation available.
formatterGroupDone :: Formatter -> Path -> FormatM ()hspec-api Test.Hspec.Api.Formatters.V3 No documentation available.
formatterGroupStarted :: Formatter -> Path -> FormatM ()hspec-api Test.Hspec.Api.Formatters.V3 No documentation available.
formatterItemDone :: Formatter -> Path -> Item -> FormatM ()hspec-api Test.Hspec.Api.Formatters.V3 No documentation available.
formatterItemStarted :: Formatter -> Path -> FormatM ()hspec-api Test.Hspec.Api.Formatters.V3 No documentation available.
formatterProgress :: Formatter -> Path -> Progress -> FormatM ()hspec-api Test.Hspec.Api.Formatters.V3 No documentation available.
formatterStarted :: Formatter -> FormatM ()hspec-api Test.Hspec.Api.Formatters.V3 No documentation available.
formatterToFormat :: Formatter -> FormatConfig -> IO Formathspec-api Test.Hspec.Api.Formatters.V3 No documentation available.
formatAsIso8601 :: UTCTime -> Textkatip 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"
formatAsLogTime :: UTCTime -> Textkatip 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"