Since both !< and >= have the same function I'm wondering if one is computed faster in Java, and other languages. I don't know how you would test this so that's one reason why I'm asking. I've heard that Java processes 32bit nums (int) faster than 8 bit nums (byte) since it's based on 32 bit infrastructure. Due to the aforementioned sentence I'm wondering if !< or >= is computed faster in Java (or if neither of them are).
*** Edit: Bytes are 8 bits, not 4 bits.