codabarLen constant

Map<int, int> const codabarLen

Implementation

static const codabarLen = <int, int>{
  0x30: 9, // "0"
  0x31: 9, // "1"
  0x34: 9, // "4"
  0x35: 9, // "5"
  0x32: 9, // "2"
  0x2d: 9, // "-"
  0x24: 9, // "$"
  0x39: 9, // "9"
  0x36: 9, // "6"
  0x37: 9, // "7"
  0x38: 9, // "8"
  0x33: 9, // "3"
  0x2e: 10, // "."
  0x2f: 10, // "/"
  0x3a: 10, // ":"
  0x2b: 10, // "+"
  0x43: 10, // "C"
  0x44: 10, // "D"
  0x41: 10, // "A"
  0x42: 10, // "B"
};