The asumMap function was recently introduced in #85:
|
asumMap :: (Foldable f, Alternative m) => (a -> m b) -> f a -> m b |
|
asumMap f = getAlt . foldMap (Alt . f) |
It would be also great to add HLint rules for this function. I think it should be possible to come up with at least 3 different rules.
The
asumMapfunction was recently introduced in #85:relude/src/Relude/Foldable/Fold.hs
Lines 84 to 85 in f69d531
It would be also great to add HLint rules for this function. I think it should be possible to come up with at least 3 different rules.