Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. clearWidgetClassMap :: MonadIO m => WidgetClass -> m ()

    gi-gtk4 GI.Gtk.Structs.WidgetClass

    Set the value of the “map” field to Nothing. When overloading is enabled, this is equivalent to

    clear #map
    

  2. clearWidgetClassUnmap :: MonadIO m => WidgetClass -> m ()

    gi-gtk4 GI.Gtk.Structs.WidgetClass

    Set the value of the “unmap” field to Nothing. When overloading is enabled, this is equivalent to

    clear #unmap
    

  3. getWidgetClassMap :: MonadIO m => WidgetClass -> m (Maybe WidgetClassMapFieldCallback)

    gi-gtk4 GI.Gtk.Structs.WidgetClass

    Get the value of the “map” field. When overloading is enabled, this is equivalent to

    get widgetClass #map
    

  4. getWidgetClassUnmap :: MonadIO m => WidgetClass -> m (Maybe WidgetClassUnmapFieldCallback)

    gi-gtk4 GI.Gtk.Structs.WidgetClass

    Get the value of the “unmap” field. When overloading is enabled, this is equivalent to

    get widgetClass #unmap
    

  5. setWidgetClassMap :: MonadIO m => WidgetClass -> FunPtr C_WidgetClassMapFieldCallback -> m ()

    gi-gtk4 GI.Gtk.Structs.WidgetClass

    Set the value of the “map” field. When overloading is enabled, this is equivalent to

    set widgetClass [ #map := value ]
    

  6. setWidgetClassUnmap :: MonadIO m => WidgetClass -> FunPtr C_WidgetClassUnmapFieldCallback -> m ()

    gi-gtk4 GI.Gtk.Structs.WidgetClass

    Set the value of the “unmap” field. When overloading is enabled, this is equivalent to

    set widgetClass [ #unmap := value ]
    

  7. asHashMap :: forall (m :: Type -> Type) . GVal m -> Maybe (HashMap Text (GVal m))

    ginger Text.Ginger.GVal

    Convenience wrapper around asDictItems to represent a GVal as a HashMap.

  8. gfnMap :: (Monad m, MonadError (RuntimeError a) m) => Function m

    ginger Text.Ginger.Run.Builtins

    No documentation available.

  9. module Language.GraphQL.Execute.OrderedMap

    This module contains a map data structure, that preserves insertion order. Some definitions conflict with functions from prelude, so this module should probably be imported qualified.

  10. data OrderedMap v

    graphql Language.GraphQL.Execute.OrderedMap

    This map associates values with the given text keys. Insertion order is preserved. When inserting a value with a key, that is already available in the map, the existing value isn't overridden, but combined with the new value using its Semigroup instance. Internally this map uses an array with keys to preserve the order and an unorded map with key-value pairs.

Page 1053 of many | Previous | Next