| License | Apache License 2.0 |
|---|---|
| Stability | experimental |
| Safe Haskell | None |
| Language | Haskell2010 |
Lambda.Parser
Description
Parses lambda code.
Documentation
term :: Parser (Expr Integer) #
Parses a lambda term, which refers to the term instantiated by the lambda at a certain depth (0-indexed).
application :: Parser (Expr Integer) #
Parses the application of two expressions, which must be wrapped in brackets.
expression :: Parser (Expr Integer) #
Parses an expression, which is either a(n): ; term; lambda.application