hypua 0.2.0

한양 PUA 코드로 인코딩된 옛한글을 첫가끝(IPF) 방식으로 변환하는 라이브러리
Documentation
  • Coverage
  • 87.5%
    7 out of 8 items documented4 out of 7 items with examples
  • Size
  • Source code size: 116.27 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.15 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 14s Average build duration of successful builds.
  • all releases: 14s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • kiwiyou/hypua
    6 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • kiwiyou

hypua

GitHub Workflow Status GitHub Crates.io GitHub code size in bytes

한양 PUA 코드로 인코딩된 옛한글을 첫가끝(IPF) 방식으로 변환하는 라이브러리

문서

사용법

  • Cargo.tomldependencies 항목에 hypua를 추가합니다.
[dependencies]
hypua = "0.1.0"

사용 예

example/hunmin.rs:

use hypua::to_ipf_string;

fn main() {
    let text = "이런 젼로 어린 百姓이 니르고져  배 이셔도.";
    println!("{}", to_ipf_string(text));
}