menu
qr_bar_code package
documentation
qr/src/math.dart
gexp function
gexp function
dark_mode
light_mode
gexp
function
int
gexp
(
int
n
)
Implementation
int gexp(int n) { while (n < 0) { n += 255; } while (n >= 256) { n -= 255; } return _expTable[n]; }
qr_bar_code package
documentation
qr/src/math
gexp function
math library