tis620

Crates.iotis620
lib.rstis620
version0.1.1
sourcesrc
created_at2021-12-23 20:27:57.957891
updated_at2021-12-26 00:25:33.461167
descriptionA library for handling Thai Industrial Standard 620 (TIS-620) characters
homepage
repositoryhttps://github.com/nui/tis620
max_upload_size
id502390
size46,390
Nui Narongwet (nui)

documentation

README

TIS-620

Latest Version Rust Documentation Crates.io Crates.io

A library for handling Thai Industrial Standard 620 (TIS-620) characters.

Example usage.

let message = "แมว";
let encoded = tis620::encode(&message).expect("TIS-620 encoded");
let decoded = tis620::decode(&encoded).expect("Original message");
assert_eq!(decoded, message);

more examples

tis620 vs encoding_rs(v0.8.30)

  • tis620::encode is slightly faster than encoding_rs::WINDOWS_874::encode
  • tis620 provide lossy encoding
  • encoding_rs::WINDOWS_874::decode is 2x faster than tis620::decode

This crate is inspired by varokas/tis620.

Commit count: 17

cargo fmt