cafeteria-prelude-0.1.0.0: Prelude subsets—take only what you want!
Prelude.Strict
Synopsis
seq :: a -> b -> b
Evaluates its first argument to head normal form, and then returns its second argument as the result.
($!) :: (a -> b) -> a -> b infixr 0
Strict (call-by-value) application, defined in terms of seq.
seq