Lean4
/-- `M ≃ₛₗ[σ] M₂` denotes the type of linear equivalences between `M` and `M₂` over a
ring homomorphism `σ`. -/
@[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))