Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. visualInfo_colormapSize :: VisualInfo -> CInt

    X11 Graphics.X11.Xlib.Types

    No documentation available.

  2. setWindowBackgroundPixmap :: Display -> Window -> Pixmap -> IO ()

    X11 Graphics.X11.Xlib.Window

    interface to the X11 library function XSetWindowBackgroundPixmap().

  3. setWindowBorderPixmap :: Display -> Window -> Pixmap -> IO ()

    X11 Graphics.X11.Xlib.Window

    interface to the X11 library function XSetWindowBorderPixmap().

  4. setWindowColormap :: Display -> Window -> Colormap -> IO ()

    X11 Graphics.X11.Xlib.Window

    interface to the X11 library function XSetWindowColormap().

  5. unmapSubwindows :: Display -> Window -> IO ()

    X11 Graphics.X11.Xlib.Window

    interface to the X11 library function XUnmapSubwindows().

  6. package bimap

    Bidirectional mapping between two key types A data structure representing a bidirectional mapping between two key types. Each value in the bimap is associated with exactly one value of the opposite type.

  7. module Data.Bimap

    An implementation of bidirectional maps between values of two key types. A Bimap is essentially a bijection between subsets of its two argument types. Each element of the left-hand type is associated with an element of the right-hand type, and vice-versa, such that the two mappings are inverses. Deleting an element will cause its twin to be deleted, and inserting a pair of elements will cause any overlapping bindings to be deleted. Most functions implicitly consider the left-hand type to be the key, and the right-hand type to be the value. Functions with an R suffix reverse this convention, treating the right-hand type as the key and the left-hand type as the value.

  8. data Bimap a b

    bimap Data.Bimap

    A bidirectional map between values of types a and b.

  9. toMap :: Bimap a b -> Map a b

    bimap Data.Bimap

    O(1). Extract only the left-to-right component of a bimap. Version: 0.2.1

  10. toMapR :: Bimap a b -> Map b a

    bimap Data.Bimap

    O(1). Extract only the right-to-left component of a bimap. Version: 0.2.1

Page 563 of many | Previous | Next