Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapValues :: (str0 -> str1) -> [T name str0] -> [T name str1]xml-basic Text.XML.Basic.Attribute No documentation available.
mapValuesA :: Applicative f => (str0 -> f str1) -> [T name str0] -> f [T name str1]xml-basic Text.XML.Basic.Attribute No documentation available.
mapCharToName :: Map Char Namexml-basic Text.XML.Basic.Entity No documentation available.
mapNameToChar :: Map Name Charxml-basic Text.XML.Basic.Entity No documentation available.
mapAttributes :: ([T name0 string0] -> [T name1 string1]) -> T name0 string0 -> T name1 string1xml-basic Text.XML.Basic.ProcessingInstruction No documentation available.
-
xml-basic Text.XML.Basic.ProcessingInstruction No documentation available.
mapName :: (Name name0 -> Name name1) -> T name0 string -> T name1 stringxml-basic Text.XML.Basic.ProcessingInstruction No documentation available.
-
FailT Control.Monad.Trans.Fail Map a function over the error type in the FailT monad.
-
FailT Control.Monad.Trans.Fail Map a function over the aggregation of errors in the FailT monad. Could be used for example for clearing our all of the aggregated error messages:
>>> runFail (mapErrorsFailT (const []) $ failT "Something went wrong") :: Either String () Left "No failure reason given"
mapFailT :: (m (Either [e] a) -> n (Either [e] b)) -> FailT e m a -> FailT e n bFailT Control.Monad.Trans.Fail Map a function over the underlying representation of the FailT monad.