plutarch-1.10.1
Safe HaskellSafe-Inferred
LanguageGHC2021

Plutarch.Internal.Lift

Synopsis

Type class

class PlutusType a => PLiftable (a :: S -> Type) where Source #

Indicates that the given Plutarch type has an equivalent in Haskell (and Plutus by extension), and we have the ability to move between them.

Important note

Calling methods of PLiftable directly should rarely, if ever, be a thing you do, unless defining your own instances without via-deriving helpers (below). Prefer using pconstant and plift, as these handle some of the oddities required without you having to think about them.

You should rarely, if ever, need to define PLiftable instances by hand. Whenever possible, prefer using DeriveBuiltinPLiftable, DeriveDataPLiftable, and DeriveNewtypePLiftable as they have fewer complexities and caveats. See their documentation for when to use them.

If you do want to define the methods yourself, there's a few key factors to keep in mind:

  1. You still shouldn't write every method by hand, there are helpers plutToReprUni and reprToPlutUni to cover common cases.
  2. If defining plutToRepr and reprToPlut for Scott encoded types you need to set PlutusRepr PMyType = PLiftedClosed PMyType
  3. When choosing a type for AsHaskell, any value of that type must be representable in Plutarch. If you have internal invariants to maintain on the Haskell side, make sure you do so with great care.

Laws

  1. reprToHask . haskToRepr = Right
  2. plutToRepr . reprToPlut = Right

Any derivations via DeriveBuiltinPLiftable, DeriveDataPLiftable, and DeriveNewtypePLiftable automatically follow these laws.

Together, these imply plift . pconstant = id.

Since: 1.10.0

Associated Types

type AsHaskell a :: Type Source #

type PlutusRepr a :: Type Source #

Methods

haskToRepr :: AsHaskell a -> PlutusRepr a Source #

Transform a's Haskell equivalent to its Plutus universe representation.

reprToHask :: PlutusRepr a -> Either LiftError (AsHaskell a) Source #

Given a's Plutus universe representation, turn it back into its (true) Haskell equivalent if possible.

reprToPlut :: forall (s :: S). PlutusRepr a -> PLifted s a Source #

Given a's Plutus universe representation, lift it into Plutarch.

plutToRepr :: (forall (s :: S). PLifted s a) -> Either LiftError (PlutusRepr a) Source #

Given a closed Plutarch term, evaluate it back into its Plutus universe representation, or fail.

Instances

Instances details
PLiftable PBitString Source # 
Instance details

Defined in Plutarch.BitString

PLiftable PBuiltinBLS12_381_G1_Element Source # 
Instance details

Defined in Plutarch.Internal.Lift

PLiftable PBuiltinBLS12_381_G2_Element Source # 
Instance details

Defined in Plutarch.Internal.Lift

PLiftable PBuiltinBLS12_381_MlResult Source # 
Instance details

Defined in Plutarch.Internal.Lift

PLiftable PBool Source # 
Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type AsHaskell PBool Source #

type PlutusRepr PBool Source #

PLiftable PByte Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type AsHaskell PByte Source #

type PlutusRepr PByte Source #

PLiftable PByteString Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

PLiftable PData Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type AsHaskell PData Source #

type PlutusRepr PData Source #

PLiftable PInteger Source # 
Instance details

Defined in Plutarch.Internal.Lift

PLiftable PString Source # 
Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type AsHaskell PString Source #

type PlutusRepr PString Source #

PLiftable PUnit Source # 
Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type AsHaskell PUnit Source #

type PlutusRepr PUnit Source #

PLiftable PNatural Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Numeric

PLiftable PPositive Source # 
Instance details

Defined in Plutarch.Internal.Numeric

PLiftable PRational Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Rational

(ToData (AsHaskell a), FromData (AsHaskell a), PIsData a) => PLiftable (PAsData a) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type AsHaskell (PAsData a) Source #

type PlutusRepr (PAsData a) Source #

(PLiftable a, Includes DefaultUni (PlutusRepr a)) => PLiftable (PBuiltinList a) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type AsHaskell (PBuiltinList a) Source #

type PlutusRepr (PBuiltinList a) Source #

(PLiftable a, Includes DefaultUni (PlutusRepr a)) => PLiftable (PAnd a) Source # 
Instance details

Defined in Plutarch.Internal.Semigroup

Associated Types

type AsHaskell (PAnd a) Source #

type PlutusRepr (PAnd a) Source #

(PLiftable a, Includes DefaultUni (PlutusRepr a)) => PLiftable (POr a) Source # 
Instance details

Defined in Plutarch.Internal.Semigroup

Associated Types

type AsHaskell (POr a) Source #

type PlutusRepr (POr a) Source #

Methods

haskToRepr :: AsHaskell (POr a) -> PlutusRepr (POr a) Source #

reprToHask :: PlutusRepr (POr a) -> Either LiftError (AsHaskell (POr a)) Source #

reprToPlut :: forall (s :: S). PlutusRepr (POr a) -> PLifted s (POr a) Source #

plutToRepr :: (forall (s :: S). PLifted s (POr a)) -> Either LiftError (PlutusRepr (POr a)) Source #

(PLiftable a, Includes DefaultUni (PlutusRepr a)) => PLiftable (PXor a) Source # 
Instance details

Defined in Plutarch.Internal.Semigroup

Associated Types

type AsHaskell (PXor a) Source #

type PlutusRepr (PXor a) Source #

PLiftable a => PLiftable (PMaybe a) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Maybe

Associated Types

type AsHaskell (PMaybe a) Source #

type PlutusRepr (PMaybe a) Source #

(SListI struct, All EachDataLiftable struct, All PInnermostIsDataDataRepr struct, hstruct ~ RecAsHaskell struct, AllZip ToAsHaskell hstruct struct) => PLiftable (PDataRec struct) Source #

@since WIP

Instance details

Defined in Plutarch.Repr.Data

Associated Types

type AsHaskell (PDataRec struct) Source #

type PlutusRepr (PDataRec struct) Source #

Methods

haskToRepr :: AsHaskell (PDataRec struct) -> PlutusRepr (PDataRec struct) Source #

reprToHask :: PlutusRepr (PDataRec struct) -> Either LiftError (AsHaskell (PDataRec struct)) Source #

reprToPlut :: forall (s :: S). PlutusRepr (PDataRec struct) -> PLifted s (PDataRec struct) Source #

plutToRepr :: (forall (s :: S). PLifted s (PDataRec struct)) -> Either LiftError (PlutusRepr (PDataRec struct)) Source #

(SListI struct, hstruct ~ RecAsHaskell struct, AllZip ToAsHaskell hstruct struct, All PLiftable struct) => PLiftable (PSOPRec struct) Source #

@since WIP

Instance details

Defined in Plutarch.Repr.SOP

Associated Types

type AsHaskell (PSOPRec struct) Source #

type PlutusRepr (PSOPRec struct) Source #

Methods

haskToRepr :: AsHaskell (PSOPRec struct) -> PlutusRepr (PSOPRec struct) Source #

reprToHask :: PlutusRepr (PSOPRec struct) -> Either LiftError (AsHaskell (PSOPRec struct)) Source #

reprToPlut :: forall (s :: S). PlutusRepr (PSOPRec struct) -> PLifted s (PSOPRec struct) Source #

plutToRepr :: (forall (s :: S). PLifted s (PSOPRec struct)) -> Either LiftError (PlutusRepr (PSOPRec struct)) Source #

(SListI2 struct, hstruct ~ StructAsHaskell struct, AllZip2 ToAsHaskell hstruct struct, All2 PLiftable struct, MyAll SOPEntryConstraints SOPRestConstraint struct, PSOPStructConstraint struct) => PLiftable (PSOPStruct struct) Source #

@since WIP

Instance details

Defined in Plutarch.Repr.SOP

Associated Types

type AsHaskell (PSOPStruct struct) Source #

type PlutusRepr (PSOPStruct struct) Source #

Methods

haskToRepr :: AsHaskell (PSOPStruct struct) -> PlutusRepr (PSOPStruct struct) Source #

reprToHask :: PlutusRepr (PSOPStruct struct) -> Either LiftError (AsHaskell (PSOPStruct struct)) Source #

reprToPlut :: forall (s :: S). PlutusRepr (PSOPStruct struct) -> PLifted s (PSOPStruct struct) Source #

plutToRepr :: (forall (s :: S). PLifted s (PSOPStruct struct)) -> Either LiftError (PlutusRepr (PSOPStruct struct)) Source #

(PlutusType (DeriveAsTag a), Generic (a (Any :: S)), TagTypeConstraints (Any :: S) a struct) => PLiftable (DeriveAsTag a) Source # 
Instance details

Defined in Plutarch.Repr.Tag

Associated Types

type AsHaskell (DeriveAsTag a) Source #

type PlutusRepr (DeriveAsTag a) Source #

(PLiftable a, Includes DefaultUni (PlutusRepr a), PLiftable b, Includes DefaultUni (PlutusRepr b)) => PLiftable (PBuiltinPair a b) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type AsHaskell (PBuiltinPair a b) Source #

type PlutusRepr (PBuiltinPair a b) Source #

(PLiftable a, PLiftable b) => PLiftable (PEither a b) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Either

Associated Types

type AsHaskell (PEither a b) Source #

type PlutusRepr (PEither a b) Source #

(ToData (AsHaskell a), FromData (AsHaskell a), ToData (AsHaskell b), FromData (AsHaskell b)) => PLiftable (PEitherData a b) Source # 
Instance details

Defined in Plutarch.Either

Associated Types

type AsHaskell (PEitherData a b) Source #

type PlutusRepr (PEitherData a b) Source #

(PlutusType a, Includes DefaultUni h) => PLiftable (DeriveBuiltinPLiftable a h) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

(PlutusType a, PSubtype PData a, ToData h, FromData h) => PLiftable (DeriveDataPLiftable a h) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

(PLiftable (PInner wrapper), Coercible h (AsHaskell (PInner wrapper)), Includes DefaultUni (PlutusRepr (PInner wrapper))) => PLiftable (DeriveNewtypePLiftable wrapper h) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type AsHaskell (DeriveNewtypePLiftable wrapper h) Source #

type PlutusRepr (DeriveNewtypePLiftable wrapper h) Source #

(PLiftable (PInner wrapper), Generic (wrapper (Any :: S)), Generic h, hstruct ~ Code h, struct' ~ Code (wrapper (Any :: S)), struct ~ UnTermStruct' struct', hstruct ~ StructAsHaskell struct, AsHaskell (PInner wrapper) ~ SOP I hstruct) => PLiftable (DerivePLiftableAsRepr wrapper h) Source #

@since WIP

Instance details

Defined in Plutarch.Repr.Derive

Associated Types

type AsHaskell (DerivePLiftableAsRepr wrapper h) Source #

type PlutusRepr (DerivePLiftableAsRepr wrapper h) Source #

Error type

data LiftError Source #

Used with fromPlutarch methods to give additional information about why evaluating a Plutarch term into a Haskell value went wrong.

Since: 1.10.0

Constructors

CouldNotEvaluate EvalError

Evaluation failed for some reason.

TypeError BuiltinError

We tried to use a builtin not part of the Plutus universe.

CouldNotCompile Text

Compiling the term into a script failed.

CouldNotDecodeData

Data encoding was invalid for our type.

OtherLiftError Text

Something else went wrong.

Instances

Instances details
Show LiftError Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

Eq LiftError Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

Functions

pconstant :: forall (a :: S -> Type) (s :: S). PLiftable a => AsHaskell a -> Term s a Source #

Given a Haskell-level representation of a Plutarch term, transform it into its equivalent term.

Since: 1.10.0

plift :: forall (a :: S -> Type). PLiftable a => (forall (s :: S). Term s a) -> AsHaskell a Source #

Given a closed Plutarch term, compile and evaluate it, then produce the corresponding Haskell value. If compilation or evaluation fails somehow, this will call error: if you need to 'trap' these outcomes and handle them differently somehow, use reprToPlut and reprToHask manually.

Since: 1.10.0

Derivation

Via-helpers

newtype DeriveBuiltinPLiftable (a :: S -> Type) (h :: Type) (s :: S) Source #

via-deriving helper, indicating that a has a Haskell-level equivalent h that is directly part of the Plutus default universe (instead of by way of an encoding).

Since: 1.10.0

Constructors

DeriveBuiltinPLiftable (a s) 

Instances

Instances details
(PlutusType a, Includes DefaultUni h) => PLiftable (DeriveBuiltinPLiftable a h) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

PlutusType (DeriveBuiltinPLiftable a h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

Methods

pcon' :: forall (s :: S). DeriveBuiltinPLiftable a h s -> Term s (PInner (DeriveBuiltinPLiftable a h)) Source #

pmatch' :: forall (s :: S) (b :: PType). Term s (PInner (DeriveBuiltinPLiftable a h)) -> (DeriveBuiltinPLiftable a h s -> Term s b) -> Term s b Source #

Generic (DeriveBuiltinPLiftable a h s) Source # 
Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type Rep (DeriveBuiltinPLiftable a h s) :: Type -> Type Source #

Generic (DeriveBuiltinPLiftable a h s) Source # 
Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type Code (DeriveBuiltinPLiftable a h s) :: [[Type]]

type AsHaskell (DeriveBuiltinPLiftable a h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type PlutusRepr (DeriveBuiltinPLiftable a h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type PContravariant' (DeriveBuiltinPLiftable a h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type PCovariant' (DeriveBuiltinPLiftable a h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type PInner (DeriveBuiltinPLiftable a h) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

type PVariant' (DeriveBuiltinPLiftable a h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type Rep (DeriveBuiltinPLiftable a h s) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type Rep (DeriveBuiltinPLiftable a h s) = D1 ('MetaData "DeriveBuiltinPLiftable" "Plutarch.Internal.Lift" "plutarch-1.10.1-LPGZaAWjybFFuyJX8dF1yJ" 'True) (C1 ('MetaCons "DeriveBuiltinPLiftable" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (a s))))
type Code (DeriveBuiltinPLiftable a h s) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type Code (DeriveBuiltinPLiftable a h s) = GCode (DeriveBuiltinPLiftable a h s)

newtype DeriveDataPLiftable (a :: S -> Type) (h :: Type) (s :: S) Source #

via-deriving helper, indicating that a has a Haskell-level equivalent h by way of its Data encoding, rather than by h being directly part of the Plutus default universe.

Since: 1.10.0

Constructors

DeriveDataPLiftable (a s) 

Instances

Instances details
(PlutusType a, PSubtype PData a, ToData h, FromData h) => PLiftable (DeriveDataPLiftable a h) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

PlutusType (DeriveDataPLiftable a h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

Methods

pcon' :: forall (s :: S). DeriveDataPLiftable a h s -> Term s (PInner (DeriveDataPLiftable a h)) Source #

pmatch' :: forall (s :: S) (b :: PType). Term s (PInner (DeriveDataPLiftable a h)) -> (DeriveDataPLiftable a h s -> Term s b) -> Term s b Source #

Generic (DeriveDataPLiftable a h s) Source # 
Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type Rep (DeriveDataPLiftable a h s) :: Type -> Type Source #

Generic (DeriveDataPLiftable a h s) Source # 
Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type Code (DeriveDataPLiftable a h s) :: [[Type]]

Methods

from :: DeriveDataPLiftable a h s -> Rep (DeriveDataPLiftable a h s)

to :: Rep (DeriveDataPLiftable a h s) -> DeriveDataPLiftable a h s

type AsHaskell (DeriveDataPLiftable a h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type PlutusRepr (DeriveDataPLiftable a h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type PContravariant' (DeriveDataPLiftable a h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type PCovariant' (DeriveDataPLiftable a h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type PInner (DeriveDataPLiftable a h) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

type PVariant' (DeriveDataPLiftable a h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type Rep (DeriveDataPLiftable a h s) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type Rep (DeriveDataPLiftable a h s) = D1 ('MetaData "DeriveDataPLiftable" "Plutarch.Internal.Lift" "plutarch-1.10.1-LPGZaAWjybFFuyJX8dF1yJ" 'True) (C1 ('MetaCons "DeriveDataPLiftable" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (a s))))
type Code (DeriveDataPLiftable a h s) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type Code (DeriveDataPLiftable a h s) = GCode (DeriveDataPLiftable a h s)

newtype DeriveNewtypePLiftable (wrapper :: S -> Type) (h :: Type) (s :: S) Source #

via-deriving helper, indicating that wrapper has a Haskell-level equivalent h by way PInner wrapper, up to coercibility.

Since: 1.10.0

Constructors

DeriveNewtypePLiftable (wrapper s) 

Instances

Instances details
(PLiftable (PInner wrapper), Coercible h (AsHaskell (PInner wrapper)), Includes DefaultUni (PlutusRepr (PInner wrapper))) => PLiftable (DeriveNewtypePLiftable wrapper h) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type AsHaskell (DeriveNewtypePLiftable wrapper h) Source #

type PlutusRepr (DeriveNewtypePLiftable wrapper h) Source #

PlutusType (DeriveNewtypePLiftable wrapper h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

Methods

pcon' :: forall (s :: S). DeriveNewtypePLiftable wrapper h s -> Term s (PInner (DeriveNewtypePLiftable wrapper h)) Source #

pmatch' :: forall (s :: S) (b :: PType). Term s (PInner (DeriveNewtypePLiftable wrapper h)) -> (DeriveNewtypePLiftable wrapper h s -> Term s b) -> Term s b Source #

Generic (DeriveNewtypePLiftable wrapper h s) Source # 
Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type Rep (DeriveNewtypePLiftable wrapper h s) :: Type -> Type Source #

Methods

from :: DeriveNewtypePLiftable wrapper h s -> Rep (DeriveNewtypePLiftable wrapper h s) x Source #

to :: Rep (DeriveNewtypePLiftable wrapper h s) x -> DeriveNewtypePLiftable wrapper h s Source #

Generic (DeriveNewtypePLiftable wrapper h s) Source # 
Instance details

Defined in Plutarch.Internal.Lift

Associated Types

type Code (DeriveNewtypePLiftable wrapper h s) :: [[Type]]

Methods

from :: DeriveNewtypePLiftable wrapper h s -> Rep (DeriveNewtypePLiftable wrapper h s)

to :: Rep (DeriveNewtypePLiftable wrapper h s) -> DeriveNewtypePLiftable wrapper h s

type AsHaskell (DeriveNewtypePLiftable wrapper h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type AsHaskell (DeriveNewtypePLiftable wrapper h) = h
type PlutusRepr (DeriveNewtypePLiftable wrapper h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type PlutusRepr (DeriveNewtypePLiftable wrapper h) = PlutusRepr (PInner wrapper)
type PContravariant' (DeriveNewtypePLiftable wrapper h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type PCovariant' (DeriveNewtypePLiftable wrapper h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type PInner (DeriveNewtypePLiftable wrapper h) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.Internal.Lift

type PVariant' (DeriveNewtypePLiftable wrapper h) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type Rep (DeriveNewtypePLiftable wrapper h s) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type Rep (DeriveNewtypePLiftable wrapper h s) = D1 ('MetaData "DeriveNewtypePLiftable" "Plutarch.Internal.Lift" "plutarch-1.10.1-LPGZaAWjybFFuyJX8dF1yJ" 'True) (C1 ('MetaCons "DeriveNewtypePLiftable" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (wrapper s))))
type Code (DeriveNewtypePLiftable wrapper h s) Source # 
Instance details

Defined in Plutarch.Internal.Lift

type Code (DeriveNewtypePLiftable wrapper h s) = GCode (DeriveNewtypePLiftable wrapper h s)

Manual instance helpers

unsafeHaskToUni :: forall (h :: Type) (a :: S -> Type) (s :: S). DefaultUni `Includes` h => h -> PLifted s a Source #

Helper that bypasses PlutusRepr and lifts the Haskell equivalent directly. This is unsafe: we cannot verify (in general) that h can be represented sensibly as an a, so use this with care.

Since: 1.10.0

reprToPlutUni :: forall (a :: S -> Type) (s :: S). (PLiftable a, DefaultUni `Includes` PlutusRepr a) => PlutusRepr a -> PLifted s a Source #

Valid definition of reprToPlut if PlutusRepr a is in the Plutus universe.

Since: 1.10.0

plutToReprUni :: forall (a :: S -> Type). (PLiftable a, DefaultUni `Includes` PlutusRepr a) => (forall (s :: S). PLifted s a) -> Either LiftError (PlutusRepr a) Source #

Valid definition of plutToRepr if PlutusRepr a is in the Plutus universe.

Since: 1.10.0

newtype PLifted (s :: S) (a :: S -> Type) Source #

Similar to Identity, but at the level of Plutarch. Only needed when writing manual instances of PLiftable, or if you want to use reprToPlut and plutToRepr directly.

This is used for coercing Plutarch terms at Haskell level with `coerce :: PLifted s a -> PLifted s b` for via-deriving helpers.

Since: 1.10.0

Constructors

PLifted (Term s POpaque) 

mkPLifted :: Term s a -> PLifted s a Source #

Since: 1.10.0

getPLifted :: PLifted s a -> Term s a Source #

Since: 1.10.0

newtype PLiftedClosed (a :: S -> Type) Source #

Use this as PlutusRepr when defining PLiftable instances for Scott encoded types.

Since: 1.10.0

Constructors

PLiftedClosed 

Fields

getPLiftedClosed :: forall (a :: S -> Type). PLiftedClosed a -> forall (s :: S). Term s a Source #

Since: 1.10.0

mkPLiftedClosed :: forall (a :: S -> Type). (forall (s :: S). Term s a) -> PLiftedClosed a Source #

Since: 1.10.0

pliftedToClosed :: forall (a :: S -> Type). (forall (s :: S). PLifted s a) -> PLiftedClosed a Source #

Since: 1.10.0

pliftedFromClosed :: forall (a :: S -> Type) (s :: S). PLiftedClosed a -> PLifted s a Source #

Since: 1.10.0

punsafeCoercePLifted :: PLifted s a -> PLifted s b Source #

Since: 1.10.0