1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
use core::convert::TryFrom;
use crate::parser::Stream;
pub fn parse(data: &[u8], code_point: u32) -> Option<u16> {
let mut s = Stream::new(data);
s.skip::<u16>();
s.skip::<u16>();
s.skip::<u32>();
s.skip::<u32>();
let count: u32 = s.read()?;
let groups = s.read_array32::<super::format12::SequentialMapGroup>(count)?;
for group in groups {
let start_char_code = group.start_char_code;
if code_point >= start_char_code && code_point <= group.end_char_code {
return u16::try_from(group.start_glyph_id).ok();
}
}
None
}
pub fn codepoints(data: &[u8], f: impl FnMut(u32)) -> Option<()> {
super::format12::codepoints(data, f)
}