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.
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
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
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
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
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 ]
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 ]
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.
gfnMap :: (Monad m, MonadError (RuntimeError a) m) => Function mginger Text.Ginger.Run.Builtins No documentation available.
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.
-
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.