scala-impatient icon indicating copy to clipboard operation
scala-impatient copied to clipboard

Change 2^32 to Math.pow(2,32)

Open rustyconover opened this issue 9 years ago • 0 comments

The ^ operator is the bitwise XOR of the value, instead Math.pow() raises 2 to 32.

You could also use 1.toLong << 32 to get the same effect.

rustyconover avatar May 17 '15 20:05 rustyconover