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