Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
commonmark-extensions Commonmark.Extensions.Attributes No documentation available.
bracketFormat :: LogItem a => ItemFormatter akatip Katip A traditional bracketed log format. Contexts and other information will be flattened out into bracketed fields. For example:
[2016-05-11 21:01:15][MyApp][Info][myhost.example.com][PID 1724][ThreadId 1154][main:Helpers.Logging Helpers/Logging.hs:32:7] Started [2016-05-11 21:01:15][MyApp.confrabulation][Debug][myhost.example.com][PID 1724][ThreadId 1154][confrab_factor:42.0][main:Helpers.Logging Helpers/Logging.hs:41:9] Confrabulating widgets, with extra namespace and context [2016-05-11 21:01:15][MyApp][Info][myhost.example.com][PID 1724][ThreadId 1154][main:Helpers.Logging Helpers/Logging.hs:43:7] Namespace and context are back to normal
bracketFormat :: LogItem a => ItemFormatter akatip Katip.Scribes.Handle A traditional bracketed log format. Contexts and other information will be flattened out into bracketed fields. For example:
[2016-05-11 21:01:15][MyApp][Info][myhost.example.com][PID 1724][ThreadId 1154][main:Helpers.Logging Helpers/Logging.hs:32:7] Started [2016-05-11 21:01:15][MyApp.confrabulation][Debug][myhost.example.com][PID 1724][ThreadId 1154][confrab_factor:42.0][main:Helpers.Logging Helpers/Logging.hs:41:9] Confrabulating widgets, with extra namespace and context [2016-05-11 21:01:15][MyApp][Info][myhost.example.com][PID 1724][ThreadId 1154][main:Helpers.Logging Helpers/Logging.hs:43:7] Namespace and context are back to normal
brackets :: Builder -> Builderkatip Katip.Scribes.Handle No documentation available.
brackets :: StyleDoc -> StyleDocrio-prettyprint RIO.PrettyPrint Document (brackets x) encloses document x in square brackets, "[" and "]".
brackets :: StyleDoc -> StyleDocrio-prettyprint Text.PrettyPrint.Leijen.Extended Document (brackets x) encloses document x in square brackets, "[" and "]".
brackets :: Printer p => p -> ptext-printer Text.Printer Enclose a Printer with square brackets.
brackets :: IsString s => Doc s -> Doc salgebraic-graphs Algebra.Graph.Export Wrap a document in square brackets.
brackets "i" == "[i]" brackets mempty == "[]"
-
classy-prelude-conduit ClassyPrelude.Conduit Bracket a conduit computation between allocation and release of a resource. Two guarantees are given about resource finalization:
- It will be prompt. The finalization will be run as early as possible.
- It is exception safe. Due to usage of resourcet, the finalization will be run in the event of any exceptions.
bracketInputEcho :: IO a -> IO aecho System.IO.Echo Save the terminal's current input EchoState, perform a computation, restore the saved EchoState, and then return the result of the computation.
bracketInputEcho action = bracket getInputEchoState setInputEchoState (const action)