Methods
Public Instance methods
rszf(count)
   # File lib/rqrcode/core_ext/integer/bitwise.rb, line 4
4:       def rszf(count)
5:         # zero fill right shift
6:         (self >> count) & ((2 ** ((self.size * 8) - count))-1)
7:       end