zigzagDecode method

  1. @protected
int zigzagDecode(
  1. int i
)

Implementation

@protected
int zigzagDecode(int i) => (i >> 1) ^ -(i & 1);