class RQRCodeCore::QRMath

def gexp(n)

Experimental RBS support (using type sampling data from the type_fusion project).

def gexp: (Integer n) -> Integer

This signature was generated using 125 samples from 1 application.

def gexp(n)
  while n < 0
    n += 255
  end
  while n >= 256
    n -= 255
  end
  EXP_TABLE[n]
end