//! The source data of a font.
use BTreeMap;
/// The source of a font.
/// Maps Unicode scalers to glyph ids.
///
/// A `BTreeMap` is used since a character map is frequently accessed in ascending order of character codes.
pub type CharacterMap = ;