Function ainconv::convert_latn_to_cyrl

source ·
pub fn convert_latn_to_cyrl(latn: &str) -> String
Expand description

Convert romanized Ainu to Cyrillic

§Arguments

  • latn - A string slice that holds the romanized Ainu word.

§Returns

  • String - The Cyrillic representation of the input string.

§Example

use ainconv::convert_latn_to_cyrl;
let cyrl = convert_latn_to_cyrl("aynu");
assert_eq!(cyrl, "айну");