Hoogle Search

Within LTS Haskell 24.20 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. printCompactHtml :: Html -> IO ()

    blaze-colonnade Text.Blaze.Colonnade

    Pretty print an HTML table, stripping whitespace from inside <td>, <th>, and common inline tags. The implementation is inefficient and is incorrect in many corner cases. It is only provided to reduce the line count of the HTML printed by GHCi examples in this module's documentation. Use of this function is discouraged.

  2. printVeryCompactHtml :: Html -> IO ()

    blaze-colonnade Text.Blaze.Colonnade

    Similar to printCompactHtml. Additionally strips all whitespace inside <tr> elements and <thead> elements.

  3. printC :: forall a (m :: Type -> Type) o . (Show a, MonadIO m) => ConduitT a o m ()

    classy-prelude-yesod ClassyPrelude.Yesod

    Print all incoming values to stdout.

  4. printable :: P s Char

    frisby Text.Parsers.Frisby.Char

    Match a printable Unicode character.

  5. printException :: (HasLogger m, MonadIO m, HasDynFlags m) => SourceError -> m ()

    ghc-lib GHC

    Print the all diagnostics in a SourceError. Useful inside exception handlers.

  6. printMinimalImports :: HscSource -> [ImportDeclUsage] -> RnM ()

    ghc-lib GHC.Rename.Names

    No documentation available.

  7. printForUserTcRn :: SDoc -> TcRn ()

    ghc-lib GHC.Tc.Utils.Monad

    Like logInfoTcRn, but for user consumption

  8. printCompositorDrawPage :: (HasCallStack, MonadIO m, IsPrintCompositor a, IsPrintContext b) => a -> b -> Int32 -> m ()

    gi-gtksource5 GI.GtkSource.Objects.PrintCompositor

    Draw page pageNr for printing on the the Cairo context encapsuled in context. This method has been designed to be called in the handler of the signalgtk.PrintOperation[draw_page] signal as shown in the following example:

    c code

    // Signal handler for the GtkPrintOperation::draw_page signal
    
    static void
    draw_page (GtkPrintOperation *operation,
    GtkPrintContext   *context,
    gint               page_nr,
    gpointer           user_data)
    {
    GtkSourcePrintCompositor *compositor;
    
    compositor = GTK_SOURCE_PRINT_COMPOSITOR (user_data);
    
    gtk_source_print_compositor_draw_page (compositor,
    context,
    page_nr);
    }
    

  9. printCompositorGetBodyFontName :: (HasCallStack, MonadIO m, IsPrintCompositor a) => a -> m Text

    gi-gtksource5 GI.GtkSource.Objects.PrintCompositor

    Returns the name of the font used to print the text body. The returned string must be freed with free.

  10. printCompositorGetBottomMargin :: (HasCallStack, MonadIO m, IsPrintCompositor a) => a -> Unit -> m Double

    gi-gtksource5 GI.GtkSource.Objects.PrintCompositor

    Gets the bottom margin in units of unit.

Page 101 of many | Previous | Next