Lean4
/-- Applies the `subst` tactic to all given hypotheses from left to right.
-/
@[tactic_parser 1000]
public meta def substs : Lean.ParserDescr✝ :=
ParserDescr.node✝ `Mathlib.Tactic.Substs.substs 1022
(ParserDescr.binary✝ `andthen (ParserDescr.nonReservedSymbol✝ "substs" false✝)
(ParserDescr.unary✝ `many
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.const✝ `colGt) (ParserDescr.const✝ `ppSpace))
(ParserDescr.const✝ `ident))))