Utilities to manipulate Hangul Syllables.
Hangul is a library to manipulate Hangul Syllables in the [Rust] language.
Hangul is an [extension trait] implemented for the primitive type [char
]. Currently it has following methods:
char
] is a Hangul Syllable: is_syllable():warning: This crate only deals with [Compatibility Jamo]: If you need [Jamo], file a issue in this repository with your context.
Add hangul
as a dependency in your Cargo.toml
.
toml
[dependencies]
hangul = "0.1.3"
then import HangulExt
trait in your code:
rust
use hangul::HangulExt;
Now you can use methods on [char
].
```rust
use hangul::{HangulExt};
asserteq!(
"첫사랑"
.chars()
.flatmap(|c| c.jamos().unwrap())
.collect::
See docs.rs
Distributed under the MIT license.