Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. showSimpleWindow :: WindowConfig -> [String] -> X Window

    xmonad-contrib XMonad.Util.XUtils

    Create a window, then fill and show it with the given text. If you are looking for a version of this function that also takes care of destroying the window, refer to withSimpleWindow.

  2. showWindow :: Window -> X ()

    xmonad-contrib XMonad.Util.XUtils

    Map a window

  3. showWindows :: [Window] -> X ()

    xmonad-contrib XMonad.Util.XUtils

    the list version

  4. shownTos :: View -> IORef Point

    yi-frontend-pango Yi.Frontend.Pango.Control

    No documentation available.

  5. showSVG :: Double -> Double -> [(Id, SVG)] -> String

    yjsvg Text.XML.YJSVG

    No documentation available.

  6. liftShowList :: Show1 f => (Int -> a -> ShowS) -> ([a] -> ShowS) -> [f a] -> ShowS

    base Data.Functor.Classes

    showList function for an application of the type constructor based on showsPrec and showList functions for the argument type. The default implementation using standard list syntax is correct for most types.

  7. liftShowList2 :: Show2 f => (Int -> a -> ShowS) -> ([a] -> ShowS) -> (Int -> b -> ShowS) -> ([b] -> ShowS) -> [f a b] -> ShowS

    base Data.Functor.Classes

    showList function for an application of the type constructor based on showsPrec and showList functions for the argument types. The default implementation using standard list syntax is correct for most types.

  8. liftShowsPrec :: Show1 f => (Int -> a -> ShowS) -> ([a] -> ShowS) -> Int -> f a -> ShowS

    base Data.Functor.Classes

    showsPrec function for an application of the type constructor based on showsPrec and showList functions for the argument type.

  9. liftShowsPrec2 :: Show2 f => (Int -> a -> ShowS) -> ([a] -> ShowS) -> (Int -> b -> ShowS) -> ([b] -> ShowS) -> Int -> f a b -> ShowS

    base Data.Functor.Classes

    showsPrec function for an application of the type constructor based on showsPrec and showList functions for the argument types.

  10. traceShow :: Show a => a -> b -> b

    base Debug.Trace

    Like trace, but uses show on the argument to convert it to a String. This makes it convenient for printing the values of interesting variables or expressions inside a function. For example, here we print the values of the variables x and y:

    >>> let f x y = traceShow ("x", x, "y", y) (x + y) in f (1+2) 5
    ("x",3,"y",5)
    8
    
    Note in this example we also create simple labels just by including some strings.

Page 223 of many | Previous | Next