Hangul

Utilities to manipulate Hangul Syllables.

crates.io version crates.io license crates.io download

Hangul is a library to manipulate Hangul Syllables in the [Rust] language.

Overview

Hangul is an [extension trait] implemented for the primitive type [char]. Currently it has following methods:

:warning: This crate only deals with [Compatibility Jamo]: If you need [Jamo], file a issue in this repository with your context.

Usage

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::(), "ㅊㅓㅅㅅㅏㄹㅏㅇ" ); ```

Documentation

See docs.rs

License

Distributed under the MIT license.