ref: 2e92c0cfdb63109961ef9e3a00a5e12ca6670b1c
dir: /lib/Control/DeepSeq.hs/
module Control.DeepSeq(module Control.DeepSeq) where
import Primitives --Yhiding(rnf)
import Prelude
rnf :: forall a . --YNFData a =>
a -> ()
rnf = primRnf
deepseq :: forall a b . --YNFData a =>
a -> b -> b
deepseq a b = rnf a `seq` b
force :: forall a . --YNFData a =>
a -> a
force x = rnf x `seq` x