is there any way to pass around a reference to an ...
# general-advice
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