Lean4
/-- `f ≤ᵐ[μ] g` means `f` is eventually less than `g` along the a.e. filter,
i.e. `f ≤ g` away from a null set.
This is notation for `Filter.EventuallyLE (MeasureTheory.ae μ) f g`. -/
@[term_parser 1000]
public meta def «term_≤ᵐ[_]_» : Lean.TrailingParserDescr✝ :=
ParserDescr.trailingNode✝ `MeasureTheory.«term_≤ᵐ[_]_» 50 0
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.symbol✝ " ≤ᵐ[") (ParserDescr.cat✝ `term 50))
(ParserDescr.symbol✝ "] "))
(ParserDescr.cat✝ `term 50))