I currently have a PR where I saw a <=
check where the number can never be below 0. This means, that in my case =
would suffice. But I’m not sure about the processing-times of these comparisons.
Do the =
and <=
comparisons both require the same amount of CPU-Time, or is one faster than the other?
1