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.

  1. bracketedSpanSpec :: forall (m :: Type -> Type) il bl . (Monad m, IsInline il, HasSpan il) => SyntaxSpec m il bl

    commonmark-extensions Commonmark.Extensions.Attributes

    No documentation available.

  2. bracketFormat :: LogItem a => ItemFormatter a

    katip 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
    

  3. bracketFormat :: LogItem a => ItemFormatter a

    katip 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
    

  4. brackets :: Builder -> Builder

    katip Katip.Scribes.Handle

    No documentation available.

  5. brackets :: StyleDoc -> StyleDoc

    rio-prettyprint RIO.PrettyPrint

    Document (brackets x) encloses document x in square brackets, "[" and "]".

  6. brackets :: StyleDoc -> StyleDoc

    rio-prettyprint Text.PrettyPrint.Leijen.Extended

    Document (brackets x) encloses document x in square brackets, "[" and "]".

  7. brackets :: Printer p => p -> p

    text-printer Text.Printer

    Enclose a Printer with square brackets.

  8. brackets :: IsString s => Doc s -> Doc s

    algebraic-graphs Algebra.Graph.Export

    Wrap a document in square brackets.

    brackets "i"    == "[i]"
    brackets mempty == "[]"
    

  9. bracketP :: forall (m :: Type -> Type) a i o r . MonadResource m => IO a -> (a -> IO ()) -> (a -> ConduitT i o m r) -> ConduitT i o m r

    classy-prelude-conduit ClassyPrelude.Conduit

    Bracket a conduit computation between allocation and release of a resource. Two guarantees are given about resource finalization:

    1. It will be prompt. The finalization will be run as early as possible.
    2. It is exception safe. Due to usage of resourcet, the finalization will be run in the event of any exceptions.
    Since 0.5.0

  10. bracketInputEcho :: IO a -> IO a

    echo 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)
    

Page 14 of many | Previous | Next