Home
last modified time | relevance | path

Searched refs:mapAndCombineSM (Results 1 – 1 of 1) sorted by relevance

/dports/lang/ghc/ghc-8.10.7/compiler/specialise/
H A DSpecialise.hs1149 = do { (alts', uds_alts) <- mapAndCombineSM spec_alt alts
1249 ; (rhss', rhs_uds) <- mapAndCombineSM (specExpr rhs_env) rhss
2835 mapAndCombineSM :: (a -> SpecM (b, UsageDetails)) -> [a] -> SpecM ([b], UsageDetails)
2836 mapAndCombineSM _ [] = return ([], emptyUDs) function
2837 mapAndCombineSM f (x:xs) = do (y, uds1) <- f x function
2838 (ys, uds2) <- mapAndCombineSM f xs