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.
Declarations about BinderInfo
#
The brackets corresponding to a given BinderInfo
.
Equations
- Lean.BinderInfo.implicit.brackets = ("{", "}")
- Lean.BinderInfo.strictImplicit.brackets = ("{{", "}}")
- Lean.BinderInfo.instImplicit.brackets = ("[", "]")
- x.brackets = ("(", ")")
Instances For
Declarations about name
#
Build a name from components. For example from_components [`foo, `bar]
becomes
`foo.bar
.
It is the inverse of Name.components
on list of names that have single components.
Instances For
Auxiliary for Name.fromComponents
Equations
- Lean.Name.fromComponents.go x [] = x
- Lean.Name.fromComponents.go x (s :: rest) = Lean.Name.fromComponents.go (s.updatePrefix x) rest
Instances For
Update the last component of a name.
Equations
- Lean.Name.updateLast f (n.str s) = n.str (f s)
- Lean.Name.updateLast f x = x
Instances For
Get the last field of a name as a string. Doesn't raise an error when the last component is a numeric field.
Equations
- (pre.str s).lastComponentAsString = s
- (pre.num n).lastComponentAsString = toString n
- Lean.Name.anonymous.lastComponentAsString = ""
Instances For
Alias of Lean.Name.lastComponentAsString
.
Get the last field of a name as a string. Doesn't raise an error when the last component is a numeric field.
Instances For
nm.splitAt n
splits a name nm
in two parts, such that the second part has depth n
, i.e.
(nm.splitAt n).2.getNumParts = n
(assuming nm.getNumParts ≥ n
).
Example: splitAt `foo.bar.baz.back.bat 1 = (`foo.bar.baz.back, `bat)
.
Equations
- nm.splitAt n = match List.splitAt n nm.componentsRev with | (nm2, nm1) => (Lean.Name.fromComponents nm1.reverse, Lean.Name.fromComponents nm2.reverse)
Instances For
isPrefixOf? pre nm
returns some post
if nm = pre ++ post
.
Note that this includes the case where nm
has multiple more namespaces.
If pre
is not a prefix of nm
, it returns none
.
Equations
- pre.isPrefixOf? Lean.Name.anonymous = if (pre == Lean.Name.anonymous) = true then some Lean.Name.anonymous else none
- pre.isPrefixOf? (p'.num a) = if (pre == p'.num a) = true then some Lean.Name.anonymous else Option.map (fun (x : Lean.Name) => x.num a) (pre.isPrefixOf? p')
- pre.isPrefixOf? (p'.str s) = if (pre == p'.str s) = true then some Lean.Name.anonymous else Option.map (fun (x : Lean.Name) => x.str s) (pre.isPrefixOf? p')
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Checks whether this ConstantInfo
is a definition,
Equations
- (Lean.ConstantInfo.defnInfo val).isDef = true
- x.isDef = false
Instances For
Checks whether this ConstantInfo
is a theorem,
Equations
- (Lean.ConstantInfo.thmInfo val).isThm = true
- x.isThm = false
Instances For
Update ConstantVal
(the data common to all constructors of ConstantInfo
)
in a ConstantInfo
.
Equations
- One or more equations did not get rendered due to their size.
- (Lean.ConstantInfo.defnInfo info).updateConstantVal x = Lean.ConstantInfo.defnInfo { toConstantVal := x, value := info.value, hints := info.hints, safety := info.safety, all := info.all }
- (Lean.ConstantInfo.axiomInfo info).updateConstantVal x = Lean.ConstantInfo.axiomInfo { toConstantVal := x, isUnsafe := info.isUnsafe }
- (Lean.ConstantInfo.thmInfo info).updateConstantVal x = Lean.ConstantInfo.thmInfo { toConstantVal := x, value := info.value, all := info.all }
- (Lean.ConstantInfo.opaqueInfo info).updateConstantVal x = Lean.ConstantInfo.opaqueInfo { toConstantVal := x, value := info.value, isUnsafe := info.isUnsafe, all := info.all }
- (Lean.ConstantInfo.quotInfo info).updateConstantVal x = Lean.ConstantInfo.quotInfo { toConstantVal := x, kind := info.kind }
Instances For
Update the name of a ConstantInfo
.
Equations
- c.updateName name = c.updateConstantVal (let __src := c.toConstantVal; { name := name, levelParams := __src.levelParams, type := __src.type })
Instances For
Update the type of a ConstantInfo
.
Equations
- c.updateType type = c.updateConstantVal (let __src := c.toConstantVal; { name := __src.name, levelParams := __src.levelParams, type := type })
Instances For
Update the level parameters of a ConstantInfo
.
Equations
- c.updateLevelParams levelParams = c.updateConstantVal (let __src := c.toConstantVal; { name := __src.name, levelParams := levelParams, type := __src.type })
Instances For
Update the value of a ConstantInfo
, if it has one.
Equations
- (Lean.ConstantInfo.defnInfo info).updateValue x = Lean.ConstantInfo.defnInfo { toConstantVal := info.toConstantVal, value := x, hints := info.hints, safety := info.safety, all := info.all }
- (Lean.ConstantInfo.thmInfo info).updateValue x = Lean.ConstantInfo.thmInfo { toConstantVal := info.toConstantVal, value := x, all := info.all }
- (Lean.ConstantInfo.opaqueInfo info).updateValue x = Lean.ConstantInfo.opaqueInfo { toConstantVal := info.toConstantVal, value := x, isUnsafe := info.isUnsafe, all := info.all }
- x✝.updateValue x = x✝
Instances For
Turn a ConstantInfo
into a declaration.
Equations
- (Lean.ConstantInfo.defnInfo info).toDeclaration! = Lean.Declaration.defnDecl info
- (Lean.ConstantInfo.thmInfo info).toDeclaration! = Lean.Declaration.thmDecl info
- (Lean.ConstantInfo.axiomInfo info).toDeclaration! = Lean.Declaration.axiomDecl info
- (Lean.ConstantInfo.opaqueInfo info).toDeclaration! = Lean.Declaration.opaqueDecl info
- (Lean.ConstantInfo.quotInfo val).toDeclaration! = panicWithPosWithDecl "Mathlib.Lean.Expr.Basic" "Lean.ConstantInfo.toDeclaration!" 155 20 "toDeclaration for quotInfo not implemented"
- (Lean.ConstantInfo.inductInfo val).toDeclaration! = panicWithPosWithDecl "Mathlib.Lean.Expr.Basic" "Lean.ConstantInfo.toDeclaration!" 156 20 "toDeclaration for inductInfo not implemented"
- (Lean.ConstantInfo.ctorInfo val).toDeclaration! = panicWithPosWithDecl "Mathlib.Lean.Expr.Basic" "Lean.ConstantInfo.toDeclaration!" 157 20 "toDeclaration for ctorInfo not implemented"
- (Lean.ConstantInfo.recInfo val).toDeclaration! = panicWithPosWithDecl "Mathlib.Lean.Expr.Basic" "Lean.ConstantInfo.toDeclaration!" 158 20 "toDeclaration for recInfo not implemented"
Instances For
Same as mkConst
, but with fresh level metavariables.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Declarations about Expr
#
Equations
- (Lean.Expr.bvar idx).bvarIdx? = some idx
- x.bvarIdx? = none
Instances For
Given f a b c
, return #[f a, f a b, f a b c]
.
Each entry in the array is an Expr.app
,
and this array has the same length as the one returned by Lean.Expr.getAppArgs
.
Equations
- e.getAppApps = Lean.Expr.getAppAppsAux e (mkArray e.getAppNumArgs (Lean.mkSort Lean.levelZero)) (e.getAppNumArgs - 1)
Instances For
Erase proofs in an expression by replacing them with sorry
s.
This function replaces all proofs in the expression
and in the types that appear in the expression
by sorryAx
s.
The resulting expression has the same type as the old one.
It is useful, e.g., to verify if the proof-irrelevant part of a definition depends on a variable.
Equations
- One or more equations did not get rendered due to their size.
Instances For
If an Expr
has form .fvar n
, then returns some n
, otherwise none
.
Equations
- (Lean.Expr.fvar n).fvarId? = some n
- x.fvarId? = none
Instances For
If an Expr
has the form Type u
, then return some u
, otherwise none
.
Equations
- (Lean.Expr.sort u).type? = u.dec
- x.type? = none
Instances For
isConstantApplication e
checks whether e
is syntactically an application of the form
(fun x₁ ⋯ xₙ => H) y₁ ⋯ yₙ
where H
does not contain the variable xₙ
. In other words,
it does a syntactic check that the expression does not depend on yₙ
.
Equations
- e.isConstantApplication = (e.isApp && Lean.Expr.isConstantApplication.aux e.getAppNumArgs'.pred e.getAppFn' e.getAppNumArgs')
Instances For
Counts the immediate depth of a nested let
expression.
Equations
- (Lean.Expr.letE declName type value b nonDep).letDepth = b.letDepth + 1
- x.letDepth = 0
Instances For
Check that an expression contains no metavariables (after instantiation).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Construct the term of type α
for a given natural number
(doing typeclass search for the OfNat
instance required).
Equations
- α.ofNat n = Lean.Meta.mkAppOptM `OfNat.ofNat #[some α, some (Lean.mkRawNatLit n), none]
Instances For
Construct the term of type α
for a given integer
(doing typeclass search for the OfNat
and Neg
instances required).
Equations
- α.ofInt (Int.ofNat n) = α.ofNat n
- α.ofInt (Int.negSucc n) = do let __do_lift ← α.ofNat (n + 1) Lean.Meta.mkAppM `Neg.neg #[__do_lift]
Instances For
Return some n
if e
is one of the following
- A nat literal (numeral)
Nat.zero
Nat.succ x
whereisNumeral x
OfNat.ofNat _ x _
whereisNumeral x
Test if an expression is either Nat.zero
, or OfNat.ofNat 0
.
Instances For
Tests is if an expression matches either x ≠ y
or ¬ (x = y)
.
If it matches, returns some (type, x, y)
.
Equations
- e.ne?' = HOrElse.hOrElse e.ne? fun (x : Unit) => e.not? >>= Lean.Expr.eq?
Instances For
Lean.Expr.le? e
takes e : Expr
as input.
If e
represents a ≤ b
, then it returns some (t, a, b)
, where t
is the Type of a
,
otherwise, it returns none
.
Equations
Instances For
Lean.Expr.lt? e
takes e : Expr
as input.
If e
represents a < b
, then it returns some (t, a, b)
, where t
is the Type of a
,
otherwise, it returns none
.
Equations
Instances For
Given a proposition ty
that is an Eq
, Iff
, or HEq
, returns (tyLhs, lhs, tyRhs, rhs)
,
where lhs : tyLhs
and rhs : tyRhs
,
and where lhs
is related to rhs
by the respective relation.
See also Lean.Expr.iff?
, Lean.Expr.eq?
, and Lean.Expr.heq?
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.Expr.modifyAppArgM modifier (f.app a) = Lean.mkApp f <$> modifier a
- Lean.Expr.modifyAppArgM modifier x = pure x
Instances For
Equations
- Lean.Expr.modifyRevArg modifier 0 (f.app x_2) = f.app (modifier x_2)
- Lean.Expr.modifyRevArg modifier i.succ (f.app x_2) = (Lean.Expr.modifyRevArg modifier i f).app x_2
- Lean.Expr.modifyRevArg modifier x✝ x = x
Instances For
Given f a₀ a₁ ... aₙ₋₁
, runs modifier
on the i
th argument or
returns the original expression if out of bounds.
Equations
- Lean.Expr.modifyArg modifier e i n = Lean.Expr.modifyRevArg modifier (n - i - 1) e
Instances For
Given f a₀ a₁ ... aₙ₋₁
, sets the argument on the i
th argument to x
or
returns the original expression if out of bounds.
Equations
- e.setArg i x n = Lean.Expr.modifyArg (fun (x_1 : Lean.Expr) => x) e i n
Instances For
Given f a₀ a₁ ... aₙ₋₁
, runs modifier
on the i
th argument.
An argument n
may be provided which says how many arguments we are expecting e
to have.
Equations
- Lean.Expr.modifyArgM modifier e i n = match e.getArg? i with | some a => do let a ← modifier a pure (Lean.Expr.modifyArg (fun (x : Lean.Expr) => a) e i n) | x => pure e
Instances For
Traverses an expression e
and renames bound variables named old
to new
.
Equations
- (fn.app arg).renameBVar old new = (fn.renameBVar old new).app (arg.renameBVar old new)
- (Lean.Expr.lam n ty bd bi).renameBVar old new = Lean.Expr.lam (if (n == old) = true then new else n) (ty.renameBVar old new) (bd.renameBVar old new) bi
- (Lean.Expr.forallE n ty bd bi).renameBVar old new = Lean.Expr.forallE (if (n == old) = true then new else n) (ty.renameBVar old new) (bd.renameBVar old new) bi
- e.renameBVar old new = e
Instances For
getBinderName e
returns some n
if e
is an expression of the form ∀ n, ...
and none
otherwise.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Annotates a binderIdent
with the binder information from an fvar
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
If e
has a structure as type with field fieldName
, mkDirectProjection e fieldName
creates
the projection expression e.fieldName
Equations
- One or more equations did not get rendered due to their size.
Instances For
If e
has a structure as type with field fieldName
(either directly or in a parent
structure), mkProjection e fieldName
creates the projection expression e.fieldName
Equations
- One or more equations did not get rendered due to their size.
Instances For
If e
is a projection of the structure constructor, reduce the projection.
Otherwise returns none
. If this function detects that expression is ill-typed, throws an error.
For example, given Prod.fst (x, y)
, returns some x
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Returns true if e
contains a name n
where p n
is true.
Equations
- e.containsConst p = (Lean.Expr.find? (fun (x : Lean.Expr) => match x with | Lean.Expr.const n us => p n | x => false) e).isSome
Instances For
Rewrites e
via some eq
, producing a proof e = e'
for some e'
.
Rewrites with a fresh metavariable as the ambient goal. Fails if the rewrite produces any subgoals.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Rewrites the type of e
via some eq
, then moves e
into the new type via Eq.mp
.
Rewrites with a fresh metavariable as the ambient goal. Fails if the rewrite produces any subgoals.
Equations
- e.rewriteType eq = do let __do_lift ← Lean.Meta.inferType e let __do_lift ← __do_lift.rewrite eq Lean.Meta.mkEqMP __do_lift e
Instances For
Given (hNotEx : Not ex)
where ex
is of the form Exists x, p x
,
return a forall x, Not (p x)
and a proof for it.
This function handles nested existentials.
Equations
- (((Lean.Expr.const `Exists [lvl']).app A').app p').forallNot_of_notExists hNotEx = Lean.Expr.forallNot_of_notExists.go lvl' A' p' hNotEx
- ex.forallNot_of_notExists hNotEx = failure
Instances For
Given (hNotEx : Not (@Exists.{lvl} A p))
,
return a forall x, Not (p x)
and a proof for it.
This function handles nested existentials.
Get the projections that are projections to parent structures. Similar to getParentStructures
,
except that this returns the (last component of the) projection names instead of the parent names.
Equations
- Lean.getFieldsToParents env structName = Array.filter (fun (fieldName : Lean.Name) => (Lean.isSubobjectField? env structName fieldName).isSome) (Lean.getStructureFields env structName)