I've been trying to make a class of 'Strictable' types. The reason being is that I want to define something like this:
foldl'' f z = foldl' f (make_strict z)
So when fold'' is used on a strictable type, there won't be unevaluated thunks.
So I've started with the following:
{-# LANGUAGE TypeFamilies #-}
class Strictable a where
type Strict a :: *
make_strict :: a -> Strict a
Defining instances for Ints and Floats is easy, foldl' works fine with these already, so there's nothing to do.
instance Strictable Int where
type Strict Int = Int
make_strict = id
instance Strictable Float where
type Strict Float = Float
make_strict = id
Here is the tricky part. foldl' only unwraps the outer most constructor, so with a pair for example, you can still get space leaks using foldl'. I want to create a strict pair out of an ordinary pair. So I tried this:
instance (Strictable a, Strictable b) => Strictable (a, b) where
type Strict (a, b) = (! Strict a, ! Strict b)
make_strict (x1, x2) = (make_strict x1, make_strict x2)
Unfortunately I got a bunch of compile errors. How should I implement this?