witch/src/ghc-9.0/Witch/Lift.hs

51 lines
1.2 KiB
Haskell
Raw Normal View History

{-# LANGUAGE ExplicitForAll #-}
module Witch.Lift where
import qualified Data.Typeable as Typeable
import qualified Language.Haskell.TH.Syntax as TH
2021-05-11 02:31:18 +03:00
import qualified Witch.TryFrom as TryFrom
import qualified Witch.Utility as Utility
2021-04-18 21:01:05 +03:00
-- | This is like 'Utility.unsafeFrom' except that it works at compile time
-- rather than runtime.
--
-- > -- Avoid this:
2021-05-11 04:04:51 +03:00
-- > unsafeFrom "some literal"
2021-04-18 21:01:05 +03:00
-- >
-- > -- Prefer this:
2021-05-11 04:04:51 +03:00
-- > $$(liftedFrom "some literal")
liftedFrom
2021-05-11 02:12:06 +03:00
:: forall source target m
2021-05-11 02:31:18 +03:00
. ( TryFrom.TryFrom source target
2021-04-17 16:48:16 +03:00
, TH.Lift target
, Show source
, Typeable.Typeable source
, Typeable.Typeable target
, TH.Quote m
)
=> source
-> TH.Code m target
2021-05-11 04:04:51 +03:00
liftedFrom = TH.liftTyped . Utility.unsafeFrom
2021-04-18 21:01:05 +03:00
-- | This is like 'Utility.unsafeInto' except that it works at compile time
-- rather than runtime.
--
-- > -- Avoid this:
-- > unsafeInto @t "some literal"
-- >
-- > -- Prefer this:
2021-04-18 22:44:05 +03:00
-- > $$(liftedInto @t "some literal")
liftedInto
2021-05-11 02:12:06 +03:00
:: forall target source m
2021-05-11 02:31:18 +03:00
. ( TryFrom.TryFrom source target
2021-04-17 16:48:16 +03:00
, TH.Lift target
, Show source
, Typeable.Typeable source
, Typeable.Typeable target
, TH.Quote m
)
=> source
-> TH.Code m target
2021-05-11 04:04:51 +03:00
liftedInto = liftedFrom