You must log in or register to comment.
return !(x < y);
Assuming x and y are totally ordered 🤮
return (x >= y);
also works
Something something sufficiently advanced compiler should optimize it away
return !(x < y);
Assuming x and y are totally ordered 🤮
return (x >= y);
also works
Something something sufficiently advanced compiler should optimize it away