Lean4
/-- `M ≃ₗ[R] M₂` denotes the type of linear equivalences between `M` and `M₂` over
a plain linear map `M →ₗ M₂`. -/
@[term_parser 1000]
public meta def «term_≃ₗ[_]_» : Lean.TrailingParserDescr✝ :=
ParserDescr.trailingNode✝ `«term_≃ₗ[_]_» 50 0
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.symbol✝ " ≃ₗ[") (ParserDescr.cat✝ `term 0))
(ParserDescr.symbol✝ "] "))
(ParserDescr.cat✝ `term 0))