Object
# File lib/rqrcode/qrcode/qr_math.rb, line 47 def gexp(n) while n < 0 n = n + 255 end while n >= 256 n = n - 255 end EXP_TABLE[n] end
# File lib/rqrcode/qrcode/qr_math.rb, line 41 def glog(n) raise QRCodeRunTimeError, "glog(#{n})" if ( n < 1 ) LOG_TABLE[n] end
[Validate]
Generated with the Darkfish Rdoc Generator 2.