Function unicode_skeleton::skeleton_chars [] [src]

pub fn skeleton_chars<I: IntoIterator<Item = char>>(
    i: I
) -> SkeletonChars<I::IntoIter>

Create an Iterator over the chararacters of the skeleton of the provided string.

Examples

skeleton_chars("𝔭𝒶ỿ𝕡𝕒ℓ").collect::<String>(); // "paypal"
skeleton_chars(['𝒶', '𝒷', '𝒸']).collect::<String>();  "abc"