Equations
- Lean.Meta.appendTag tag suffix = tag.modifyBase fun (x : Lean.Name) => x ++ suffix.eraseMacroScopes
Equations
- Lean.Meta.appendTagSuffix mvarId suffix = do let tag ← mvarId.getTag mvarId.setTag (Lean.Meta.appendTag tag suffix)
Equations
def
Lean.Meta.throwTacticEx
{α : Type}
(tacticName : Name)
(mvarId : MVarId)
(msg? : Option MessageData := none)
:
MetaM α
Equations
- One or more equations did not get rendered due to their size.
Get the type the given metavariable after instantiating metavariables and reducing to weak head normal form.
Equations
- mvarId.getType' = do let __do_lift ← mvarId.getType let __do_lift ← Lean.Meta.whnf __do_lift Lean.instantiateMVars __do_lift
Beta reduce the metavariable type head
Equations
- mvarId.headBetaType = do let __do_lift ← mvarId.getType mvarId.setType __do_lift.headBeta
def
Lean.Meta.exactlyOne
(mvarIds : List MVarId)
(msg : MessageData := (MessageData.ofFormat ∘ format) "unexpected number of goals")
:
Equations
- Lean.Meta.exactlyOne [mvarId] msg = pure mvarId
- Lean.Meta.exactlyOne mvarIds msg = Lean.throwError msg
def
Lean.Meta.ensureAtMostOne
(mvarIds : List MVarId)
(msg : MessageData := (MessageData.ofFormat ∘ format) "unexpected number of goals")
:
Equations
- Lean.Meta.ensureAtMostOne [] msg = pure none
- Lean.Meta.ensureAtMostOne [mvarId] msg = pure (some mvarId)
- Lean.Meta.ensureAtMostOne mvarIds msg = Lean.throwError msg
Return all propositions in the local context.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
- closed : TacticResultCNM
- noChange : TacticResultCNM
- modified (mvarId : MVarId) : TacticResultCNM
Check if a goal is of a subsingleton type.
Equations
- One or more equations did not get rendered due to their size.