isomorphism-class-0.2: library/IsomorphismClass/Relations/LazyTextAndText.hs
{-# OPTIONS_GHC -Wno-orphans #-}
module IsomorphismClass.Relations.LazyTextAndText where
import qualified Data.Text.Lazy
import IsomorphismClass.Classes
import IsomorphismClass.Prelude
instance IsSome Data.Text.Lazy.Text Text where
to = Data.Text.Lazy.fromStrict
instance IsSome Text Data.Text.Lazy.Text where
to = Data.Text.Lazy.toStrict
instance Is Data.Text.Lazy.Text Text
instance Is Text Data.Text.Lazy.Text