unsignedRightShift function

num unsignedRightShift(
  1. Object? leftOperand,
  2. Object? rightOperand
)

Perform JavaScript unsigned right shift operator (>>>) on the given left operand by the amount specified by the given right operand.

Implementation

external num unsignedRightShift(Object? leftOperand, Object? rightOperand);