ref: 3c4c38a565695f5d0ae07b45eff1e1cf9fe4c324
dir: /lib/Control/DeepSeq.hs/
module Control.DeepSeq(module Control.DeepSeq) where import Primitives import Prelude rnf :: forall a . a -> () rnf = primRnfErr deepseq :: forall a b . a -> b -> b deepseq a b = rnf a `seq` b force :: forall a . a -> a force x = rnf x `seq` x rnfNoErr :: forall a . a -> () rnfNoErr = primRnfNoErr