plutus-core-1.34.1.0: Language library for Plutus Core
Safe HaskellSafe-Inferred
LanguageHaskell2010

PlutusCore.Builtin.TypeScheme

Description

This module assigns types to built-ins. See the plutusplutus-coredocs/Constant application.md article for how this emerged.

Synopsis

Documentation

class Typeable (a ∷ k) Source #

The class Typeable allows a concrete representation of a type to be calculated.

Minimal complete definition

typeRep#

data TypeScheme val (args ∷ [Type]) res where Source #

The type of type schemes of built-in functions. args is a list of types of arguments, res is the resulting type. E.g. Text -> Bool -> Integer is encoded as TypeScheme val [Text, Bool] Integer.

Constructors

TypeSchemeResult ∷ (Typeable res, KnownTypeAst TyName (UniOf val) res, MakeKnown val res) ⇒ TypeScheme val '[] res 
TypeSchemeArrow ∷ (Typeable arg, KnownTypeAst TyName (UniOf val) arg, MakeKnown val arg, ReadKnown val arg) ⇒ TypeScheme val args res → TypeScheme val (arg ': args) res infixr 9 
TypeSchemeAll ∷ (KnownSymbol text, KnownNat uniq, KnownKind kind) ⇒ Proxy '(text, uniq, kind) → TypeScheme val args res → TypeScheme val args res 

Instances

Instances details
Show (TypeScheme val args res) Source # 
Instance details

Defined in PlutusCore.Builtin.TypeScheme

Methods

showsPrecIntTypeScheme val args res → ShowS Source #

showTypeScheme val args res → String Source #

showList ∷ [TypeScheme val args res] → ShowS Source #

argProxyTypeScheme val (arg ': args) res → Proxy arg Source #

typeSchemeToTypeTypeScheme val args res → Type TyName (UniOf val) () Source #

Convert a TypeScheme to the corresponding Kind.