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
30
31
32
33
34
35
36
37
use core::convert::TryFrom;
use crate::parser::Stream;
pub fn parse(data: &[u8], code_point: u32) -> Option<u16> {
let code_point = u16::try_from(code_point).ok()?;
let mut s = Stream::new(data);
s.skip::<u16>();
s.skip::<u16>();
s.skip::<u16>();
let first_code_point: u16 = s.read()?;
let count: u16 = s.read()?;
let glyphs = s.read_array16::<u16>(count)?;
let idx = code_point.checked_sub(first_code_point)?;
glyphs.get(idx)
}
pub fn codepoints(data: &[u8], mut f: impl FnMut(u32)) -> Option<()> {
let mut s = Stream::new(data);
s.skip::<u16>();
s.skip::<u16>();
s.skip::<u16>();
let first_code_point: u16 = s.read()?;
let count: u16 = s.read()?;
for i in 0..count {
let code_point = first_code_point.checked_add(i)?;
f(u32::from(code_point));
}
Some(())
}