Lean4
/-- `MDiffAt[s] f x` elaborates to `MDifferentiableWithinAt I J f s x`,
trying to determine `I` and `J` from the local context.
The argument `x` can be omitted. -/
@[scoped term_parser 1000]
public meta def «termMDiffAt[_]__» : Lean.ParserDescr✝ :=
ParserDescr.node✝ `Manifold.«termMDiffAt[_]__» 1024
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.symbol✝ "MDiffAt[") (ParserDescr.cat✝ `term 0))
(ParserDescr.symbol✝ "]"))
(ParserDescr.unary✝ `group (ParserDescr.const✝ `ppSpace)))
(ParserDescr.cat✝ `term 1023))