Lean4
/-- This enables the notation `⨂[R] i : ι, s i` for the pi tensor product `PiTensorProduct`,
given an indexed family of types `s : ι → Type*`. -/
@[scoped term_parser 1000]
public meta def «term⨂[_]_,_» : Lean.ParserDescr✝ :=
ParserDescr.node✝ `TensorProduct.«term⨂[_]_,_» 100
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.symbol✝ "⨂[") (ParserDescr.cat✝ `term 0))
(ParserDescr.symbol✝ "]"))
Batteries.ExtendedBinder.extBinders)
(ParserDescr.symbol✝ ", "))
(ParserDescr.cat✝ `term 0))