class Integer
Public Instance Methods
ror(shift, word_size = size)
click to toggle source
# File lib/blake/main.rb, line 2 def ror(shift, word_size = size) word_size *= 8 self >> shift | (self << (word_size - shift) & (2**word_size - 1)) end