kanaria 0.2.0

This library provides functions such as hiragana, katakana, half-width and full-width mutual conversion and discrimination.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use UCSChar;
use string::string::UCSStr;

impl<T> Clone for UCSStr<T> where T: UCSChar {
    fn clone(&self) -> Self {
        Self {
            target: self.target.clone(),
            convert_params: self.convert_params.clone(),
        }
    }

    fn clone_from(&mut self, source: &Self) {
        *self = source.clone()
    }
}