Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

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

  1. mapWorkflowCheap :: forall t (m :: Type -> Type) a b . (Reflex t, Functor m) => (a -> b) -> Workflow t m a -> Workflow t m b

    reflex Reflex.Workflow

    Map a "cheap" function over a Workflow. Refer to the documentation for pushCheap for more information and performance considerations.

  2. mapCArrayInPlace :: (Ix i, Storable e) => (e -> e) -> CArray i e -> CArray i e

    carray Data.Array.CArray.Base

    In-place map on CArray. Note that this is IN PLACE so you should not retain any reference to the original. It flagrantly breaks referential transparency!

  3. mapExceptionT :: (m (Either SomeException a) -> n (Either SomeException b)) -> ExceptionT m a -> ExceptionT n b

    exception-transformers Control.Monad.Exception

    No documentation available.

  4. mapException :: (Exception e1, Exception e2) => (e1 -> e2) -> a -> a

    graphviz Data.GraphViz.Exception

    This function maps one exception into another as proposed in the paper "A semantics for imprecise exceptions".

  5. 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).

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

    hledger-lib Hledger.Data.Account

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

  7. 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).

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

    hledger-lib Hledger.Data.Amount

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

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

    hledger-lib Hledger.Utils

    Like mapM but uses sequence'.

  10. 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.

Page 165 of many | Previous | Next