Search code examples
javaoperatorsconditional-statements

Is there such thing as not less than?


In my code, I'm trying to make a not less than operator. I can't do a !< b... what can I do? Is there any package / method I can use?


Solution

  • Oh, I am so stupid! I could just do a >= b!