uni-util-2.2.0.0: Util/DeepSeq.hs
-- | Module taken from Dean Harington's post to the Haskell mailing list
-- on Fri, 17 Aug 2001.
--
-- URL is currently
-- <http://www.haskell.org/pipermail/haskell/2001-August/007712.html>
--
-- This module provides 'deepSeq' and '$!!' which correspond to 'seq' and '$!'
-- except that they try to evaluate everything in the argument. For example,
-- if a list is provided, the whole list must be evaluated.
--
-- For purposes of Haddock, empty instance declarations with @where@
-- have had the @where@ deleted.
module Util.DeepSeq where
class DeepSeq a where
deepSeq :: a -> b -> b
deepSeq = seq -- default, for simple cases
infixr 0 `deepSeq`, $!!
($!!) :: (DeepSeq a) => (a -> b) -> a -> b
f $!! x = x `deepSeq` f x
instance DeepSeq ()
instance (DeepSeq a) => DeepSeq [a] where
deepSeq [] y = y
deepSeq (x:xs) y = deepSeq x $ deepSeq xs y
instance (DeepSeq a,DeepSeq b) => DeepSeq (a,b) where
deepSeq (a,b) y = deepSeq a $ deepSeq b y
instance (DeepSeq a,DeepSeq b,DeepSeq c) => DeepSeq (a,b,c) where
deepSeq (a,b,c) y = deepSeq a $ deepSeq b $ deepSeq c y
instance (DeepSeq a,DeepSeq b,DeepSeq c,DeepSeq d) => DeepSeq (a,b,c,d) where
deepSeq (a,b,c,d) y = deepSeq a $ deepSeq b $ deepSeq c $ deepSeq d y
instance (DeepSeq a,DeepSeq b,DeepSeq c,DeepSeq d,DeepSeq e) => DeepSeq (a,b,c,d,e) where
deepSeq (a,b,c,d,e) y = deepSeq a $ deepSeq b $ deepSeq c $ deepSeq d $ deepSeq e y
instance (DeepSeq a,DeepSeq b,DeepSeq c,DeepSeq d,DeepSeq e,DeepSeq f) => DeepSeq (a,b,c,d,e,f) where
deepSeq (a,b,c,d,e,f) y = deepSeq a $ deepSeq b $ deepSeq c $ deepSeq d $ deepSeq e $ deepSeq f y
instance (DeepSeq a,DeepSeq b,DeepSeq c,DeepSeq d,DeepSeq e,DeepSeq f,DeepSeq g) => DeepSeq (a,b,c,d,e,f,g) where
deepSeq (a,b,c,d,e,f,g) y = deepSeq a $ deepSeq b $ deepSeq c $ deepSeq d $ deepSeq e $ deepSeq f $ deepSeq g y
instance DeepSeq Bool
instance DeepSeq Char
instance (DeepSeq a) => DeepSeq (Maybe a) where
deepSeq Nothing y = y
deepSeq (Just x) y = deepSeq x y
instance (DeepSeq a, DeepSeq b) => DeepSeq (Either a b) where
deepSeq (Left a) y = deepSeq a y
deepSeq (Right b) y = deepSeq b y
instance DeepSeq Ordering
instance DeepSeq Integer
instance DeepSeq Int
instance DeepSeq Float
instance DeepSeq Double