> Functions
Returns the number obtained by rotating the 64 bits of the integer x* by *s positions to the left: the bits that leave through the top come back in through the bottom. Unlike the << shift, no bit is lost. The original number is not modified.
The rotation covers all 64 bits, sign bit included. A rotation by 64 positions gives back x*, and a negative *s rotates to the right: rotateLeft(x, -s) is equivalent to rotateRight(x, s).
Impossible de charger les données du jeu.
Vérifiez votre connexion et réessayez.