Less than approx equals? <≈

I would use something like this. But why not allowing additional kwargs?

leaq(a, b; kwargs...) = (a <= b) || isapprox(a, b; kwargs...)

Edit: added semicolon, thanks @mtsch

1 Like