Lean4
/-- An `AffineMap k P1 P2` (notation: `P1 →ᵃ[k] P2`) is a map from `P1` to `P2` that
induces a corresponding linear map from `V1` to `V2`. -/
@[term_parser 1000]
public meta def «term_→ᵃ[_]_» : Lean.TrailingParserDescr✝ :=
ParserDescr.trailingNode✝ `«term_→ᵃ[_]_» 25 0
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.symbol✝ " →ᵃ[") (ParserDescr.cat✝ `term 25))
(ParserDescr.symbol✝ "] "))
(ParserDescr.cat✝ `term 0))