Hoogle Search

Within LTS Haskell 24.27 (ghc-9.10.3)

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

  1. mapDotGraph :: (DotRepr dg n, DotRepr dg n') => (n -> n') -> dg n -> dg n'

    graphviz Data.GraphViz.Types

    Change the node values. This function is assumed to be injective, otherwise the resulting graph will not be identical to the original (modulo labels).

  2. mapAccounts :: (Account -> Account) -> Account -> Account

    hledger-lib Hledger.Data.Account

    Map a (non-tree-structure-modifying) function over this and sub accounts.

  3. maPlus :: MixedAmount -> MixedAmount -> MixedAmount

    hledger-lib Hledger.Data.Amount

    Sum two MixedAmount, keeping the cost of the first if any. Amounts with different costs are kept separate (since 2021).

  4. mapMixedAmount :: (Amount -> Amount) -> MixedAmount -> MixedAmount

    hledger-lib Hledger.Data.Amount

    Apply a transform to a mixed amount's component Amounts.

  5. mapM' :: Monad f => (a -> f b) -> [a] -> f [b]

    hledger-lib Hledger.Utils

    Like mapM but uses sequence'.

  6. mapAccumL :: (a -> Char -> (a, Char)) -> a -> JSString -> (a, JSString)

    jsaddle Data.JSString

    O(n) Like a combination of map and foldl'. Applies a function to each element of a JSString, passing an accumulating parameter from left to right, and returns a final JSString. Performs replacement on invalid scalar values.

  7. mapAccumR :: (a -> Char -> (a, Char)) -> a -> JSString -> (a, JSString)

    jsaddle Data.JSString

    The mapAccumR function behaves like a combination of map and a strict foldr; it applies a function to each element of a JSString, passing an accumulating parameter from right to left, and returning a final value of this accumulator together with the new JSString. Performs replacement on invalid scalar values.

  8. mapAccumL :: (a -> Char -> (a, Char)) -> a -> Stream Char -> (a, JSString)

    jsaddle Data.JSString.Internal.Fusion

    O(n) Like a combination of map and foldl'. Applies a function to each element of a Text, passing an accumulating parameter from left to right, and returns a final JSString.

  9. mapEvent :: forall (m :: Type -> Type) e e' value . Monad m => (e -> e') -> ResultT e m value -> ResultT e' m value

    morpheus-graphql-core Data.Morpheus.Internal.Ext

    No documentation available.

  10. mapApplySplit :: Ord a => a -> (c -> c -> c) -> (b -> c) -> (Map a b -> Map a c) -> Map a b -> Map a c

    numeric-prelude MathObj.PartialFraction

    Apply a function on a specific element if it exists, and another function to the rest of the map.

Page 162 of many | Previous | Next