is there any way to pass around a reference to an operator, like `<` or `>=` like it was a fun...
j
is there any way to pass around a reference to an operator, like
<
or
>=
like it was a function?
c
Not AFAIK, because these operators aren't really functions, they're just sugar for a
compareTo
call