Additional operations on Expr and related types #
This file defines basic operations on the types expr, name, declaration, level, environment.
This file is mostly for non-tactics.
Converts an Expr
into a Syntax
, by creating a fresh metavariable
assigned to the expr and returning a named metavariable syntax ?a
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Count the number of lambdas at the head of the given expression.
Instances For
Returns the number of leading ∀
binders of an expression. Ignores metadata.
Instances For
Like withApp
but ignores metadata.
Equations
Instances For
Like getAppArgs
but ignores metadata.
Equations
- e.getAppArgs' = e.withApp' fun (x : Lean.Expr) (as : Array Lean.Expr) => as
Instances For
Like withAppRev
but ignores metadata.
Instances For
Like getAppRevArgs
but ignores metadata.
Equations
Instances For
Like getArgD
but ignores metadata.
Equations
Instances For
Like isAppOf
but ignores metadata.
Equations
- e.isAppOf' n = match e.getAppFn' with | Lean.Expr.const c us => c == n | x => false
Instances For
Turns an expression that is a natural number literal into a natural number.
Equations
Instances For
Turns an expression that is a constructor of Int
applied to a natural number literal
into an integer.
Equations
- One or more equations did not get rendered due to their size.