Methods

RQRCode::CoreExtensions::Integer::Bitwise

Public Instance Methods

rszf(count) click to toggle source
# File lib/rqrcode/core_ext/integer/bitwise.rb, line 5
def rszf(count)
  # zero fill right shift
  (self >> count) & ((2 ** ((self.size * 8) - count))-1)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.