AC-Vector-2.0.0: Data/Vector/Transform.hs
{- |
Convenience module to import all sizes of transform. (This doesn't include all the field names though, just the transform types and their application functions.)
-}
module Data.Vector.Transform
(
Transform1 (), transformP1,
Transform2 (), transformP2,
Transform3 (), transformP3,
Transform4 (), transformP4,
)
where
import Data.Vector.Transform.T1
import Data.Vector.Transform.T2
import Data.Vector.Transform.T3
import Data.Vector.Transform.T4