usc 1.20230730.1349

A common lib for unitedservices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_export]
macro_rules! cl {
    ($a:expr) => {
        {
            let _str = stringify!($a);
            let a=_str.find(".");
            if a.is_none(){
                _str
            } else{
                &_str[a.unwrap()+1..]
            }
        }
    };
}