Zero Fill Right Shift (bitwise logical right shift)

Hi All,

I’m looking for the equivalent Java >>> Triple shift function.

bitShrn() is close (>>) but not quite right.

Any ideas?

Regards,
RW

Any one have any ideas?

If your number is positive, >> is the same as >>>

How big are your numbers?
Is the input value ever negative?

Also what’s wrong with bitshrn…

Especially because the implementation uses >>>