We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, mkSignature generates a single signature, but it might be useful to that into multiple smaller signatures at user's request. For instance,
mkSignature
-- generate signature for the entire lambda-pi language mkSignature ''Raw.Term' ''Raw.VarIdent ''Raw.ScopedTerm' ''Raw.Pattern' -- partial signature covering only functions and the universe type mkPartialSignature "Functions" ''Raw.Term' ''Raw.VarIdent ''Raw.ScopedTerm' ''Raw.Pattern' ['Raw.Universe, 'Raw.Pi, 'Raw.Lam, 'Raw.App] -- partial signature covering only pairs mkPartialSignature "Pairs" ''Raw.Term' ''Raw.VarIdent ''Raw.ScopedTerm' ''Raw.Pattern' ['Raw.Product, 'Raw.Pair, 'Raw.First, 'Raw.Second]
Partial signatures are naturally embedded into full signatures, so it is possible to easily go between the AST representations.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently,
mkSignature
generates a single signature, but it might be useful to that into multiple smaller signatures at user's request. For instance,Partial signatures are naturally embedded into full signatures, so it is possible to easily go between the AST representations.
The text was updated successfully, but these errors were encountered: