ref: ad8eefd7d8c41dfb5fb6e9c9c6ad81780a558cfd
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