jp_utils 0.1.7

Utils for working with Japanese text.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(clippy::result_unit_err)]

#[cfg(feature = "hiragana")]
pub mod hiragana;

#[cfg(feature = "furigana")]
pub mod furi;

pub mod alphabet;
pub mod constants;
pub mod counter;
pub mod radicals;
pub mod reading;
pub mod tokenize;
pub mod trait_ext;

pub use trait_ext::JapaneseExt;