encodeMove function

int encodeMove(
  1. int from,
  2. int to,
  3. int flag
)

Implementation

int encodeMove(int from, int to, int flag) => from | (to << 6) | (flag << 12);