pub fn convert_latn_to_kana(latn: &str) -> String
Expand description

Convert romanized Ainu to Katakana

§Arguments

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

§Returns

  • String - The Katakana representation of the input string.

§Example

use ainconv::convert_latn_to_kana;
let kana = convert_latn_to_kana("aynu");
assert_eq!(kana, "アイヌ");