Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. mapCSVFile :: (MonadResource m, CSV ByteString a, CSV ByteString b, MonadThrow m) => CSVSettings -> (a -> [b]) -> FilePath -> FilePath -> m ()

    csv-conduit Data.CSV.Conduit

    Map over the rows of a CSV file. Provided for convenience for historical reasons. An easy way to run this function would be runResourceT after feeding it all the arguments.

  2. mapEither :: (a -> c) -> (b -> d) -> Either a b -> Either c d

    currycarbon Currycarbon.Calibration.Utils

    No documentation available.

  3. mapMonotonic :: (Integer -> Integer) -> IntegerInterval -> IntegerInterval

    data-interval Data.IntegerInterval

    mapMonotonic f i is the image of i under f, where f must be a strict monotone function.

  4. mapMonotonic :: (Ord a, Ord b) => (a -> b) -> Interval a -> Interval b

    data-interval Data.Interval

    mapMonotonic f i is the image of i under f, where f must be a strict monotone function, preserving negative and positive infinities.

  5. mapKeysMonotonic :: (Ord k1, Ord k2) => (k1 -> k2) -> IntervalMap k1 a -> IntervalMap k2 a

    data-interval Data.IntervalMap.Lazy

    mapKeysMonotonic f s is the map obtained by applying f to each key of s. f must be strictly monotonic. That is, for any values x and y, if x < y then f x < f y.

  6. mapKeysMonotonic :: (Ord k1, Ord k2) => (k1 -> k2) -> IntervalMap k1 a -> IntervalMap k2 a

    data-interval Data.IntervalMap.Strict

    mapKeysMonotonic f s is the map obtained by applying f to each key of s. f must be strictly monotonic. That is, for any values x and y, if x < y then f x < f y.

  7. mapDecision :: (a -> b) -> (b -> a) -> Decision a -> Decision b

    decidable Data.Type.Predicate

    Map over the value inside a Decision.

  8. mapRefuted :: (a -> b) -> Refuted b -> Refuted a

    decidable Data.Type.Predicate

    Change the target of a Refuted with a contravariant mapping function.

  9. mapAccumLWithKey :: (forall (v :: k1) . () => a -> k2 v -> f v -> (a, g v)) -> a -> MonoidalDMap k2 f -> (a, MonoidalDMap k2 g)

    dependent-monoidal-map Data.Dependent.Map.Monoidal

    O(n). The function mapAccumLWithKey threads an accumulating argument throught the map in ascending order of keys.

  10. mapAccumRWithKey :: (forall (v :: k1) . () => a -> k2 v -> f v -> (a, g v)) -> a -> MonoidalDMap k2 f -> (a, MonoidalDMap k2 g)

    dependent-monoidal-map Data.Dependent.Map.Monoidal

    O(n). The function mapAccumRWithKey threads an accumulating argument through the map in descending order of keys.

Page 327 of many | Previous | Next