-- 021202 -- H98-compliant version -- A convenience module that simply imports and exports all the different -- Lift*-modules. Use if you just want it all. module LiftAll(module Liftable, module LiftBool, module LiftEq, module LiftOrd, module LiftArray, module LiftMaybe, module LiftArrayNum, module LiftMaybeNum) where import Liftable import LiftBool import LiftEq import LiftOrd import LiftArray -- H98 compliance - instantiation of LiftNum for Arrays import LiftArrayNum import LiftMaybe -- H98 compliance - instantiation of LiftNum for Maybe types import LiftMaybeNum