zigZagDecode static method

int zigZagDecode(
  1. int parameterInteger
)

Implementation

static int zigZagDecode(int parameterInteger) {
  return ((parameterInteger >> 1) ^ (-(parameterInteger & 1)));
}