Lean4
/-- The notation `Πₗ i, α i` refers to a pi type equipped with the lexicographic order. -/
@[term_parser 1000]
public meta def «termΠₗ_,_» : Lean.ParserDescr✝ :=
ParserDescr.node✝ `Pi.«termΠₗ_,_» 1022
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.symbol✝ "Πₗ") Batteries.ExtendedBinder.extBinders)
(ParserDescr.symbol✝ ", "))
(ParserDescr.cat✝ `term 0))