Convert the given goal Ctx |- target
into Ctx |- type -> target
.
It assumes val
has type type
Instances For
Instances For
Convert the given goal Ctx |- target
into Ctx |- let name : type := val; target
.
It assumes val
has type type
Instances For
Instances For
Convert the given goal Ctx |- target
into Ctx |- (hName : type) -> hName = val -> target
.
It assumes val
has type type
Instances For
Instances For
- fvarId : Lean.FVarId
- mvarId : Lean.MVarId
- subst : Lean.Meta.FVarSubst
Instances For
Convert the given goal Ctx |- target
into a goal containing (userName : type)
after the local declaration with if fvarId
.
It assumes val
has type type
, and that type
is well-formed after fvarId
.
Note that val
does not need to be well-formed after fvarId
. That is, it may contain variables that are defined after fvarId
.
Instances For
Instances For
Convert the given goal Ctx |- target
into Ctx, (hs[0].userName : hs[0].type) ... |-target
.
It assumes hs[i].val
has type hs[i].type
.