Module voca_rs::utils[][src]

Expand description

Utility functions and properties.

Constants

The concatenation of the ascii_lowercase and ascii_uppercase constants described below. This value is not locale-dependent.

The lowercase letters "abcdefghijklmnopqrstuvwxyz". This value is not locale-dependent and will not change.

The uppercase letters "ABCDEFGHIJKLMNOPQRSTUVWXYZ". This value is not locale-dependent and will not change.

The string “0123456789”.

The string "0123456789abcdefABCDEF".

The string "01234567".

String of ASCII characters which are considered printable. This is a combination of digits, ascii_letters, punctuation, and whitespace.

The string !"#$%&'()*+,-./:;<=>?@[\]^_{|}~`.

A property that contains the library semantic version number.

The string " \t\n\r".

Functions

Takes any Unicode string and returns an ASCII transliteration of that string. https://github.com/chowdhurya/rust-unidecode/blob/master/src/lib.rs

Takes a single Unicode character and returns an ASCII transliteration. https://github.com/chowdhurya/rust-unidecode/blob/master/src/lib.rs