shiftL function

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

Implementation

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