Why Java doesn't support <<< operator

java, oop

Solution

Java adds the operator ">>>" to perform logical right shifts, but because the logical and arithmetic left-shift operations are identical, there is no "<<<" operator in Java.

from Shifts in Java...

Problem

Why doesn't Java support the `<<<` (unsigned left shift) operator, but does support the `>>>` (unsigned right shift) operator?

Original source