D has operator >>> which means "unsigned shift to the right", inherited
from Java. But it doesn't need it because D has unsigned types, which
can be used to effect unsigned shift. (Java, lacking unsigned types, had
no other way around but to define a new operator.)
Should we yank operator>>>?
Andrei