Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
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"
formatItem :: LogItem a => ItemFormatter akatip Katip.Scribes.Handle Deprecated: Use bracketFormat instead
forLoop :: Monad m => a -> (a -> Bool) -> (a -> a) -> (a -> m ()) -> m ()loop Control.Loop forLoop start cond inc f: A C-style for loop with starting value, loop condition and incrementor.
forLoopFold :: a -> (a -> Bool) -> (a -> a) -> acc -> (acc -> a -> acc) -> accloop Control.Loop forLoopFold start cond inc acc0 f: A pure fold using a for loop instead of a list for performance. Care is taken that acc0 not be strictly evaluated if unless done so by f.
forLoopState :: Monad m => a -> (a -> Bool) -> (a -> a) -> b -> (b -> a -> m b) -> m bloop Control.Loop forLoopState start cond inc initialState f: A C-style for loop with starting value, loop condition, incrementor and a state that is threaded through the computation.