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. showSignal :: WidgetClass self => Signal self (IO ())

    gtk Graphics.UI.Gtk.Abstract.Widget

    The widget is shown.

  2. showGlyphString :: GlyphItem -> Render ()

    gtk Graphics.UI.Gtk.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.

  3. showLayout :: PangoLayout -> Render ()

    gtk Graphics.UI.Gtk.Cairo

    Draw a PangoLayout.

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

  4. showLayoutLine :: LayoutLine -> Render ()

    gtk Graphics.UI.Gtk.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.

  5. showLaws :: Show a => Gen a -> Laws

    hedgehog-classes Hedgehog.Classes

    Tests the following Show laws:

  6. showReadLaws :: (Eq a, Read a, Show a) => Gen a -> Laws

    hedgehog-classes Hedgehog.Classes

    Tests the following Show / Read laws:

  7. showBundle :: FpPrecision -> BundleOf Message -> String

    hosc Sound.Osc.Text

    Printer for Bundle

    >>> let aBundle = Bundle 1 [Message "/c_set" [Int32 1, Float 2.3, Int64 4, Double 5.6], Message "/memset" [string "addr", blob [7, 8]]]
    
    >>> showBundle (Just 4) aBundle
    "#bundle 4294967296 2 /c_set ,ifhd 1 2.3 4 5.6 /memset ,sb addr 0708"
    

  8. showBytes :: [Int] -> String

    hosc Sound.Osc.Text

    Hex encoded byte sequence.

    >>> showBytes [0, 15, 16, 144, 255]
    "000f1090ff"
    

  9. showDatum :: FpPrecision -> Datum -> String

    hosc Sound.Osc.Text

    Printer for Datum.

    >>> let aDatumSeq = [Int32 1,Float 1.2,string "str",midi (0,0x90,0x40,0x60),blob [12,16], TimeStamp 100.0]
    
    >>> map (showDatum (Just 5)) aDatumSeq
    ["1","1.2","str","00904060","0c10","429496729600"]
    

  10. showFloatWithPrecision :: RealFloat n => FpPrecision -> n -> String

    hosc Sound.Osc.Text

    Variant of showFFloat that deletes trailing zeros.

    >>> map (showFloatWithPrecision (Just 4)) [1, 2.0, pi]
    ["1.0","2.0","3.1416"]
    

Page 113 of many | Previous | Next