Question

How can I translate the following code to objective c? (Value is an int)

while (value != 0) {
    value >>>= 1;

And is there a general replacement for the >>> operator?

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top