Hoogle Search

Within LTS Haskell 24.19 (ghc-9.10.3)

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

  1. showFreeMin :: Maybe Word -> ShowFmt

    libBF LibBF.Opts

    same as showFree but uses the minimum number of digits (takes more computation time).

  2. showRnd :: RoundMode -> ShowFmt

    libBF LibBF.Opts

    Use this rounding mode.

  3. showTypeOf :: NoThunks a => Proxy a -> String

    nothunks NoThunks.Class

    Show type a (to add to the context) We try hard to avoid Typeable constraints in this module: there are types with no Typeable instance but with a NoThunks instance (most important example are types such as ST s which rely on parametric polymorphism). By default we should therefore only show the "outer layer"; for example, if we have a type

    Seq (ST s ())
    
    then showTypeOf should just give Seq, leaving it up to the instance for ST to decide how to implement showTypeOf; this keeps things compositional. The default implementation does precisely this using the metadata that GHC Generics provides. For convenience, however, some of the deriving via newtype wrappers we provide do depend on Typeable; see below.

  4. showGlyphString :: GlyphItem -> Render ()

    pango Graphics.Rendering.Pango.Cairo

    Draw a glyph string.

    • The origin of the glyphs (the left edge of the baseline) will be drawn at the current point of the cairo context.

  5. showLayout :: PangoLayout -> Render ()

    pango Graphics.Rendering.Pango.Cairo

    Draw a PangoLayout.

    • The top-left corner of the PangoLayout will be drawn at the current point of the cairo context.

  6. showLayoutLine :: LayoutLine -> Render ()

    pango Graphics.Rendering.Pango.Cairo

    Draw a LayoutLine.

    • The origin of the glyphs (the left edge of the baseline) will be drawn at the current point of the cairo context.

  7. showEnum :: MessageEnum a => a -> String

    proto-lens Data.ProtoLens.Message

    Get the name of this enum as defined in the .proto file. Used for the human-readable output in Data.ProtoLens.TextFormat.

  8. showMessage :: Message msg => msg -> String

    proto-lens Data.ProtoLens.TextFormat

    Convert the given message into a human-readable String.

  9. showMessageShort :: Message msg => msg -> String

    proto-lens Data.ProtoLens.TextFormat

    Serializes a proto as a string on a single line. Useful for debugging and error messages like .DebugString() in other languages.

  10. showMessageWithRegistry :: Message msg => Registry -> msg -> String

    proto-lens Data.ProtoLens.TextFormat

    Convert the given message into a human-readable String, using the Registry to encode google.protobuf.Any values.

Page 85 of many | Previous | Next