NUMSYS_AND_CHECK_DIGIT_PATTERNS constant

List<List<int>> const NUMSYS_AND_CHECK_DIGIT_PATTERNS

See {@link #L_AND_G_PATTERNS}; these values similarly represent patterns of even-odd parity encodings of digits that imply both the number system (0 or 1) used, and the check digit.

Implementation

static const List<List<int>> NUMSYS_AND_CHECK_DIGIT_PATTERNS = [
  [0x38, 0x34, 0x32, 0x31, 0x2C, 0x26, 0x23, 0x2A, 0x29, 0x25],
  [0x07, 0x0B, 0x0D, 0x0E, 0x13, 0x19, 0x1C, 0x15, 0x16, 0x1A]
];