1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pub fn enclose(input: &str, with: &str) -> String {
    format!("{with}{input}{with}")
}

pub fn enclose_all<T>(input: Vec<T>, with: &str) -> Vec<String>
where
    T: AsRef<str>,
{
    input.into_iter().map(|el| enclose(el.as_ref(), with)).collect()
}

pub fn stringify<T>(input: Vec<T>) -> Vec<String>
where
    T: ToString,
{
    input.iter().map(ToString::to_string).collect()
}

pub const TROUBLE_CHARS: &str = "¥฿😀😁😂😃😄😅😆😇😈😉😊😋😌😍😎😏😐😑😒😓😔😕😖😗😘😙😚😛😜😝😞😟😠😡😢😣😤😥😦😧😨😩😪😫😬😭😮😯😰😱😲😳😴😵😶😷😸😹😺😻😼😽😾😿🙀🙁🙂🙃🙄🙅🙆🙇🙈🙉🙊🙋🙌🙍🙎🙏ऀँंःऄअआइईउऊऋऌऍऎएऐऑऒओऔकखगघङचछजझञटठडढणतथदधनऩपफबभमयर€₭₮₯₰₱₲₳₴₵₶₷₸₹₺₻₼₽₾₿⃀";