use super::*;
use phf::{phf_map, phf_set};
pub const CONVERSION_TABLE: [(Keys, NumerativeLUT); 5] = [
(NUMERATIVE_CLASS2B, CONV_TABLE2B),
(NUMERATIVE_CLASS2C, CONV_TABLE2C),
(NUMERATIVE_CLASS2D, CONV_TABLE2D),
(NUMERATIVE_CLASS2E, CONV_TABLE2E),
(NUMERATIVE_CLASS2F, CONV_TABLE2F),
];
const NUMERATIVE_CLASS2B: Keys = phf_set! {
"分", "版", "敗", "発", "拍", "鉢",
"波", "派", "泊", "犯", "班", "品", "分間", "分目", "片", "篇", "編", "辺", "遍", "歩", "報",
"方",
};
const CONV_TABLE2B: NumerativeLUT = phf_map! {
"一"=> DigitType::SemiVoiced,
"三"=> DigitType::SemiVoiced,
"四"=> DigitType::SemiVoiced,
"六"=> DigitType::SemiVoiced,
"八"=> DigitType::SemiVoiced,
"十"=> DigitType::SemiVoiced,
"百"=> DigitType::SemiVoiced,
"千"=> DigitType::SemiVoiced,
"万"=> DigitType::SemiVoiced,
"何"=> DigitType::SemiVoiced,
};
const NUMERATIVE_CLASS2C: Keys = phf_set! {
"本",
"匹",
"疋",
"票",
"俵",
"箱",
"本立て",
"杯",
"針",
"柱",
};
const CONV_TABLE2C: NumerativeLUT = phf_map! {
"一"=> DigitType::SemiVoiced,
"三"=> DigitType::Voiced,
"六"=> DigitType::SemiVoiced,
"八"=> DigitType::SemiVoiced,
"十"=> DigitType::SemiVoiced,
"百"=> DigitType::SemiVoiced,
"千"=> DigitType::Voiced,
"万"=> DigitType::Voiced,
"何"=> DigitType::Voiced,
};
const NUMERATIVE_CLASS2D: Keys = phf_set! {
};
const CONV_TABLE2D: NumerativeLUT = phf_map! {
"三"=>DigitType::Voiced,
"六"=>DigitType::SemiVoiced,
"八"=>DigitType::SemiVoiced,
"十"=>DigitType::SemiVoiced,
"百"=>DigitType::SemiVoiced,
"千"=>DigitType::Voiced,
"万"=>DigitType::Voiced,
"何"=>DigitType::Voiced,
};
const NUMERATIVE_CLASS2E: Keys = phf_set! {
"軒", "石", "足", "尺",
"かけ", "重ね", "件", "勺",
};
const CONV_TABLE2E: NumerativeLUT = phf_map! {
"三"=>DigitType::Voiced,
"千"=>DigitType::Voiced,
"万"=>DigitType::Voiced,
};
const NUMERATIVE_CLASS2F: Keys = phf_set! { "階"};
const CONV_TABLE2F: NumerativeLUT = phf_map! {
"三"=> DigitType::Voiced,
};