Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapCBMCExceptT :: (m (Either e a) -> n (Either e' b)) -> CBMCExceptT e m a -> CBMCExceptT e' n bgrisette Grisette.Core Map the error and values in a CBMCExceptT
mapIdentifier :: (Identifier -> Identifier) -> Symbol -> Symbolgrisette Grisette.Core Modify the identifier of a symbol.
mapMetadata :: AsMetadata a => (SExpr -> a) -> Identifier -> Identifiergrisette Grisette.Core Modify the metadata of an identifier.
mapCBMCExceptT :: (m (Either e a) -> n (Either e' b)) -> CBMCExceptT e m a -> CBMCExceptT e' n bgrisette Grisette.Internal.Core.Control.Monad.CBMCExcept Map the error and values in a CBMCExceptT
mapIdentifier :: (Identifier -> Identifier) -> Symbol -> Symbolgrisette Grisette.Internal.Core.Data.Symbol Modify the identifier of a symbol.
mapMetadata :: AsMetadata a => (SExpr -> a) -> Identifier -> Identifiergrisette Grisette.Internal.Core.Data.Symbol Modify the metadata of an identifier.
mapEvent :: WidgetClass self => Signal self (EventM EAny Bool)gtk3 Graphics.UI.Gtk.Abstract.Widget The window is put onto the screen.
mapSignal :: WidgetClass self => Signal self (IO ())gtk3 Graphics.UI.Gtk.Abstract.Widget The widget appears on screen.
mapContext :: (String -> String) -> Context a -> Context ahakyll Hakyll.Web.Template.Context Transform the respective string results of all fields in a context. For example,
mapContext (++"c") (constField "x" "a" <> constField "y" "b")
is equivalent toconstField "x" "ac" <> constField "y" "bc"
mapContextBy :: (String -> Bool) -> (String -> String) -> Context a -> Context ahakyll Hakyll.Web.Template.Context Transform the respective string results of all fields in a context satisfying a predicate. For example,
mapContextBy (=="y") (++"c") (constField "x" "a" <> constField "y" "b")
is equivalent toconstField "x" "a" <> constField "y" "bc"