On Thursday, 26 March 2015 at 22:30:54 UTC, H. S. Teoh wrote:
> As for combinations of < and <=, what about taking multiple
> template
> arguments? E.g.:
>
> if (isOrdered!("<", "<=")(0, x, 10)) { ... }
>
>
In that case, wouldn't it be more readable to just do:
if (0 < x <= 10) { ... }
?