Lean4
/-- `C(X, Y)` is the type of continuous maps from `X` to `Y`. -/
@[term_parser 1000]
public meta def «termC(_,_)» : Lean.ParserDescr✝ :=
ParserDescr.node✝ `«termC(_,_)» 1024
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.symbol✝ "C(") (ParserDescr.cat✝ `term 0))
(ParserDescr.symbol✝ ", "))
(ParserDescr.cat✝ `term 0))
(ParserDescr.symbol✝ ")"))