Sha256: 10b777af88cbb367bc5c01e7b8b3d00a8f727eeea7cc1cab159b9f2f1c2f67d9
Contents?: true
Size: 232 Bytes
Versions: 69
Compression:
Stored size: 232 Bytes
Contents
define(function(){ /** * Bitwise circular shift left * http://en.wikipedia.org/wiki/Circular_shift */ function rol(val, shift){ return (val << shift) | (val >> (32 - shift)); } return rol; });
Version data entries
69 entries across 69 versions & 2 rubygems