alright 0.1.4

A Safe-running, error-free, error-transmission without loss and 0 `unsafe block` error handling system - Aiming to provide a better development experience for the application layer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub(crate) fn get_name(original_name: &str) -> String {
    original_name
        .split("::")
        .last()
        .unwrap()
        .to_string()
        .replace(">", "")
}

pub(crate) fn to_string_vec(msg_list: &mut Vec<impl Into<String>>) -> Vec<String> {
    msg_list.drain(..).map(|item| item.into()).collect()
}