package exh.util infix fun > T.over(other: T) = this > other infix fun > T.overEq(other: T) = this >= other infix fun > T.under(other: T) = this < other infix fun > T.underEq(other: T) = this <= other