edit-lenses-0.1: Data/Iso.hs
module Data.Iso where data Iso a b = Iso (a -> b) (b -> a) instance Show (Iso a b) where show (Iso f g) = "Iso <fn> <fn>"
module Data.Iso where data Iso a b = Iso (a -> b) (b -> a) instance Show (Iso a b) where show (Iso f g) = "Iso <fn> <fn>"