Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
def
Lean.Meta.caseValues
(mvarId : MVarId)
(fvarId : FVarId)
(values : Array Expr)
(hNamePrefix : Name := `h)
(substNewEqs : Bool := false)
 :
Split goal ... |- C x into values.size + 1 subgoals
- ..., (h_1 : x = value[0]) |- C value[0]... n)- ..., (h_n : x = value[n - 1]) |- C value[n - 1]n+1)- ..., (h_1 : x != value[0]) ... (h_n : x != value[n-1]) |- C xwhere- n = values.sizewhere- fvarIdis- xs id. The type of- xmust have decidable equality.
Remark: the last subgoal is for the "else" catchall case, and its subst is {}.
Remark: the field newHs has size 1 forall but the last subgoal.
If substNewEqs = true, then the new h_i equality hypotheses are substituted in the first n cases.
Equations
- Lean.Meta.caseValues mvarId fvarId values hNamePrefix substNewEqs = Lean.Meta.caseValues.loop✝ fvarId hNamePrefix substNewEqs 1 mvarId values.toList #[] #[]