hangul-cd 0.1.2

hangul-cd (compose-decompose): Rust helpers for composing and decomposing Hangul syllable blocks and words.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! lib/src/lib.rs
//! A library for working with Hangul (Korean script) at the jamo, block,
//! word, and string levels.

/// A module for working with Hangul syllable blocks.
pub mod block;

/// A module for working with Hangul jamo characters.
pub mod jamo;

/// A module for working with strings mixing Hangul and non-Hangul characters.
pub mod string;

/// A module for working with Hangul words.
pub mod word;