Is there a cleaner way of writing the following:
(a > b) and (a > c)
The following doesn't work, but this might illustrate the kind of thing I'm looking for:
a > [b, c]
Is there a cleaner way of writing the following:
(a > b) and (a > c)
The following doesn't work, but this might illustrate the kind of thing I'm looking for:
a > [b, c]
You could write c < a > b
, but it's pretty weird-looking. Probably clearer simply with a > b and a > c
.