pub(crate) mod u16str;
pub(crate) mod word_info;
use nom::number::complete::{le_u32, le_u8};
use nom::Parser;
use crate::dic::word_id::WordId;
use crate::error::SudachiNomResult;
pub fn u32_array_parser(input: &[u8]) -> SudachiNomResult<&[u8], Vec<u32>> {
let (rest, length) = le_u8(input)?;
nom::multi::count(le_u32, length as usize)(rest)
}
pub fn u32_wid_array_parser(input: &[u8]) -> SudachiNomResult<&[u8], Vec<WordId>> {
let (rest, length) = le_u8(input)?;
nom::multi::count(le_u32.map(WordId::from_raw), length as usize)(rest)
}
pub fn skip_wid_array(input: &[u8]) -> SudachiNomResult<&[u8], Vec<WordId>> {
let (rest, length) = le_u8(input)?;
let num_bytes = length as usize * 4;
let next = &rest[num_bytes..];
Ok((next, Vec::new()))
}
pub fn skip_u32_array(input: &[u8]) -> SudachiNomResult<&[u8], Vec<u32>> {
let (rest, length) = le_u8(input)?;
let num_bytes = length as usize * 4;
let next = &rest[num_bytes..];
Ok((next, Vec::new()))
}
pub fn u32_parser(input: &[u8]) -> SudachiNomResult<&[u8], u32> {
le_u32(input)
}