You're viewing a single thread.
All Comments
5 comments
return !(x < y);
5 0 ReplyAssuming x and y are totally ordered 🤮
3 0 Replyreturn (x >= y);
also works3 1 Reply
You're viewing a single thread.
return !(x < y);
Assuming x and y are totally ordered 🤮
return (x >= y);
also works