arithmetic-type/uint32

View on GitHub
src/rotr32.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Right rotate for 32-bit unsigned integers
 */

export function rotr32(word, shift) {
    return (word << (32 - shift)) | (word >>> shift);
}