ainu-utils 0.5.1

A collection of utilities for the Ainu language
Documentation
1
2
3
4
5
6
7
8
9
10
pub fn map_v(v: &char) -> char {
    match v {
        'a' => '',
        'i' => '',
        'u' => '',
        'e' => '',
        'o' => '',
        _ => unreachable!(),
    }
}