1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{-# LANGUAGE TypeOperators #-} module TypeOperators ( -- * stuff (:-:), (:+:), Op, O(..), biO, ) where data a :-: b data (a :+: b) c data a `Op` b newtype (g `O` f) a = O { unO :: g (f a) } biO :: (g `O` f) a biO = undefined