zhconv 0.4.1

Traditional, Simplified and regional Chinese variants converter powered by MediaWiki & OpenCC rulesets and the Aho-Corasick algorithm 中文简繁及地區詞轉換
Documentation
macro_rules! get_with_fallback {
    ( $map:expr, $key:expr, $( $others:tt )* ) => {
        $map.get(&$key).or_else(|| get_with_fallback!($map, $($others)* ))
    };
    ( $map:expr, $key:expr ) => {
        $map.get(&$key)
    };
}
pub(crate) use get_with_fallback;

macro_rules! for_wasm {
    ($($item:item)*) => {$(
        #[cfg(target_arch = "wasm32")]
        #[cfg(feature = "wasm")]
        $item
    )*}
}
pub(crate) use for_wasm;

#[cfg(feature = "compress")]
pub fn zstd_decompress(bytes: &[u8]) -> Vec<u8> {
    use std::io::Read;

    let mut buf = vec![];
    ruzstd::decoding::StreamingDecoder::new(bytes)
        .unwrap()
        .read_to_end(&mut buf)
        .unwrap();
    buf
}

macro_rules! regex {
    ($re:literal $(,)?) => {{
        static RE: std::sync::OnceLock<regex::Regex> = std::sync::OnceLock::new();
        RE.get_or_init(|| regex::Regex::new($re).unwrap())
    }};
}
pub(crate) use regex;

// // https://stackoverflow.com/a/51345372/5488616
// macro_rules! unwrap_or_return {
//     ( $e:expr ) => {
//         match $e {
//             Some(x) => x,
//             None => return,
//         }
//     };
//     ( $e:expr, $r:expr ) => {
//         match $e {
//             Some(x) => x,
//             None => return $r,
//         }
//     };
// }
// pub(crate) use unwrap_or_return;