Function hfs_nfd::decompose_into_hfs_nfd[][src]

pub fn decompose_into_hfs_nfd(input: &str) -> String
Expand description

Applies the Unicode decomposition similar to NFD used in HFS+

Arguments

  • input - A string to be decomposed

Examples

use hfs_nfd::decompose_into_hfs_nfd;
assert_eq!(&decompose_into_hfs_nfd("Pok\u{00E9}mon"), "Poke\u{0301}mon");