Lean4
/-- The notation `M ≃ₗ⋆[R] M₂` denotes the type of star-linear equivalences between `M` and `M₂`
over the `⋆` endomorphism of the underlying starred ring `R`. -/
@[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))