18 void AddPair(u32 firstUnicode, u32 secondUnicode,
float kerningValue);
19 bool TryGet(u32 firstUnicode, u32 secondUnicode,
float& out_kerningValue)
const;
21 inline static u64 CharacterPairKey(u32 firstUnicode, u32 secondUnicode)
23 u64 pairKey = firstUnicode;
25 pairKey |= secondUnicode;
29 typedef Eegeo::unordered_map<u64, float>::type TPairKeyToKerningValues;
30 TPairKeyToKerningValues m_pairKeyToKerningValues;