Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Plutarch.Repr.SOP
Synopsis
- newtype PSOPStruct (struct :: [[S -> Type]]) (s :: S) = PSOPStruct {
- unPSOPStruct :: PStruct struct s
- newtype PSOPRec (struct :: [S -> Type]) (s :: S) = PSOPRec {}
- newtype DeriveAsSOPStruct (a :: S -> Type) s = DeriveAsSOPStruct {
- unDeriveAsSOPStruct :: a s
- newtype DeriveAsSOPRec (a :: S -> Type) s = DeriveAsSOPRec {
- unDeriveAsSOPRec :: a s
Documentation
newtype PSOPStruct (struct :: [[S -> Type]]) (s :: S) Source #
Since: 1.10.0
Constructors
PSOPStruct | |
Fields
|
Instances
(PlutusType (PSOPStruct struct), All2 PEq struct) => PEq (PSOPStruct struct) Source # | |
Defined in Plutarch.Repr.SOP Methods (#==) :: forall (s :: S). Term s (PSOPStruct struct) -> Term s (PSOPStruct struct) -> Term s PBool 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 |
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 # | |
(SListI2 struct, PSOPStructConstraint struct) => PlutusType (PSOPStruct struct) Source # | Since: 1.10.0 |
Defined in Plutarch.Repr.SOP Associated Types type PInner (PSOPStruct struct) :: PType Source # type PCovariant' (PSOPStruct struct) Source # type PContravariant' (PSOPStruct struct) Source # type PVariant' (PSOPStruct struct) Source # Methods pcon' :: forall (s :: S). PSOPStruct struct s -> Term s (PInner (PSOPStruct struct)) Source # pmatch' :: forall (s :: S) (b :: PType). Term s (PInner (PSOPStruct struct)) -> (PSOPStruct struct s -> Term s b) -> Term s b Source # | |
type AsHaskell (PSOPStruct struct) Source # | |
Defined in Plutarch.Repr.SOP | |
type PlutusRepr (PSOPStruct struct) Source # | |
Defined in Plutarch.Repr.SOP | |
type PContravariant' (PSOPStruct struct) Source # | |
Defined in Plutarch.Repr.SOP | |
type PCovariant' (PSOPStruct struct) Source # | |
Defined in Plutarch.Repr.SOP | |
type PInner (PSOPStruct struct) Source # | |
Defined in Plutarch.Repr.SOP | |
type PVariant' (PSOPStruct struct) Source # | |
Defined in Plutarch.Repr.SOP |
newtype PSOPRec (struct :: [S -> Type]) (s :: S) Source #
Since: 1.10.0
Instances
newtype DeriveAsSOPStruct (a :: S -> Type) s Source #
via
-derivation helper to derive PlutusType
instance using SoP encoding. If your type has
only one constructor prefer using DeriveAsSOPRec
instead.
Since: 1.10.0
Constructors
DeriveAsSOPStruct | |
Fields
|
Instances
(Generic (a (Any :: S)), struct ~ UnTermStruct (a (Any :: S)), SListI2 struct, forall (s :: S). StructSameRepr s a struct, PSOPStructConstraint struct) => PlutusType (DeriveAsSOPStruct a) Source # | Since: 1.10.0 |
Defined in Plutarch.Repr.SOP Associated Types type PInner (DeriveAsSOPStruct a) :: PType Source # type PCovariant' (DeriveAsSOPStruct a) Source # type PContravariant' (DeriveAsSOPStruct a) Source # type PVariant' (DeriveAsSOPStruct a) Source # Methods pcon' :: forall (s :: S). DeriveAsSOPStruct a s -> Term s (PInner (DeriveAsSOPStruct a)) Source # pmatch' :: forall (s :: S) (b :: PType). Term s (PInner (DeriveAsSOPStruct a)) -> (DeriveAsSOPStruct a s -> Term s b) -> Term s b Source # | |
type PContravariant' (DeriveAsSOPStruct a) Source # | |
Defined in Plutarch.Repr.SOP | |
type PCovariant' (DeriveAsSOPStruct a) Source # | |
Defined in Plutarch.Repr.SOP | |
type PInner (DeriveAsSOPStruct a) Source # | |
Defined in Plutarch.Repr.SOP | |
type PVariant' (DeriveAsSOPStruct a) Source # | |
Defined in Plutarch.Repr.SOP |
newtype DeriveAsSOPRec (a :: S -> Type) s Source #
via
-derivation helper for SOP encoding, currently behaves exactly like DeriveAsSOPStruct
but can be used only on types with a single constructor. It is separate to leave a room for
future optimizations.
Since: 1.10.0
Constructors
DeriveAsSOPRec | |
Fields
|
Instances
(Generic (a (Any :: S)), '[struct'] ~ Code (a (Any :: S)), struct ~ UnTermRec struct', SListI struct, forall (s :: S). StructSameRepr s a '[struct], RecTypePrettyError (Code (a (Any :: S)))) => PlutusType (DeriveAsSOPRec a) Source # | Since: 1.10.0 |
Defined in Plutarch.Repr.SOP Associated Types type PInner (DeriveAsSOPRec a) :: PType Source # type PCovariant' (DeriveAsSOPRec a) Source # type PContravariant' (DeriveAsSOPRec a) Source # type PVariant' (DeriveAsSOPRec a) Source # Methods pcon' :: forall (s :: S). DeriveAsSOPRec a s -> Term s (PInner (DeriveAsSOPRec a)) Source # pmatch' :: forall (s :: S) (b :: PType). Term s (PInner (DeriveAsSOPRec a)) -> (DeriveAsSOPRec a s -> Term s b) -> Term s b Source # | |
type PContravariant' (DeriveAsSOPRec a) Source # | |
Defined in Plutarch.Repr.SOP | |
type PCovariant' (DeriveAsSOPRec a) Source # | |
Defined in Plutarch.Repr.SOP | |
type PInner (DeriveAsSOPRec a) Source # | |
Defined in Plutarch.Repr.SOP | |
type PVariant' (DeriveAsSOPRec a) Source # | |
Defined in Plutarch.Repr.SOP |