class TTFunk::Table::Cff::Encoding

def element_width(fmt = format_sym)

@TODO: handle supplemental encoding (necessary?)
def element_width(fmt = format_sym)
  case fmt
  when :array_format then 1
  when :range_format then 2
  when :supplemental then 3
  else
    raise Error, "'#{fmt}' is an unsupported encoding format"
  end
end