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.

  1. mapValues :: (str0 -> str1) -> [T name str0] -> [T name str1]

    xml-basic Text.XML.Basic.Attribute

    No documentation available.

  2. mapValuesA :: Applicative f => (str0 -> f str1) -> [T name str0] -> f [T name str1]

    xml-basic Text.XML.Basic.Attribute

    No documentation available.

  3. mapCharToName :: Map Char Name

    xml-basic Text.XML.Basic.Entity

    No documentation available.

  4. mapNameToChar :: Map Name Char

    xml-basic Text.XML.Basic.Entity

    No documentation available.

  5. mapAttributes :: ([T name0 string0] -> [T name1 string1]) -> T name0 string0 -> T name1 string1

    xml-basic Text.XML.Basic.ProcessingInstruction

    No documentation available.

  6. mapAttributesA :: Applicative f => ([T name0 string0] -> f [T name1 string1]) -> T name0 string0 -> f (T name1 string1)

    xml-basic Text.XML.Basic.ProcessingInstruction

    No documentation available.

  7. mapName :: (Name name0 -> Name name1) -> T name0 string -> T name1 string

    xml-basic Text.XML.Basic.ProcessingInstruction

    No documentation available.

  8. mapErrorFailT :: forall (m :: Type -> Type) e e' a . Functor m => (e -> e') -> FailT e m a -> FailT e' m a

    FailT Control.Monad.Trans.Fail

    Map a function over the error type in the FailT monad.

  9. mapErrorsFailT :: forall (m :: Type -> Type) e e' a . Functor m => ([e] -> [e']) -> FailT e m a -> FailT e' m a

    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"
    

  10. mapFailT :: (m (Either [e] a) -> n (Either [e] b)) -> FailT e m a -> FailT e n b

    FailT Control.Monad.Trans.Fail

    Map a function over the underlying representation of the FailT monad.

Page 230 of many | Previous | Next