shiftR function

int shiftR(
  1. int v,
  2. int n
)

Implementation

int shiftR(int v, int n) => (v >> n).toSigned(32);