Open johanbrandhorst opened 3 months ago
Examples:
if x.Sub(y) > 0
to
if x.After(y)
if x.Sub(y) < 0
if x.Before(y)
Could also suggest !x.After instead of x.Sub(y) <= 0 and vice versa, but it's maybe a little more nuanced.
!x.After
x.Sub(y) <= 0
Examples:
to
to
Could also suggest
!x.After
instead ofx.Sub(y) <= 0
and vice versa, but it's maybe a little more nuanced.