glyphBySE static method

int glyphBySE(
  1. dynamic cff,
  2. int charcode
)

Implementation

static int glyphBySE(cff, int charcode){
  if (charcode < 0 || charcode > 255) return -1;
  return glyphByUnicode(cff, tableSE[charcode]);
}