//! > This table defines the mapping of character codes to the glyph index values used in the font.
// https://docs.microsoft.com/en-us/typography/opentype/spec/cmap#format-2-high-byte-mapping-through-table
fn read_from((start_char_code, end_char_code, start_glyph_id): (u32, u32, u32)) -> Self {
/// the same glyph, the `HashMap` will contain the **first** mapping encountered. Also note that
// https://github.com/adobe-type-tools/afdko/blob/01a35dacc9e8d1735b7f752f3232d38c34e6f843/c/shared/source/ttread/ttread.c#L1885