#[macro_export]
#[repr(Rust)]
#[cfg(feature = "tools")]
macro_rules! clist {
() => {
list_tools::List::new()
};
($arg:expr; $n:expr) => {
list_tools::List::vec_to_list(vec![$arg; $n])
};
($($x:expr),+) => {
vec![$($x),*].to_list()
};
}
#[repr(Rust)]
#[cfg(feature = "tools")]
pub mod fast_tools {
use crate::List;
#[repr(Rust)]
pub fn vec_to_list<T>(v: Vec<T>) -> List<T> {
List::vec_to_list(v)
}
#[repr(Rust)]
pub fn slice_to_list<T: Clone>(s: &[T]) -> List<T> {
List::slice_to_list(s)
}
#[repr(Rust)]
pub fn string_to_list<S: ToString>(t: String, split_test: S) -> List<String> {
let split_test = split_test.to_string();
let split = t.split(&split_test);
let collect = split.collect::<Vec<&str>>();
let mut l = List::new();
for i in collect {
l.append_of_end(i.to_string());
}
l
}
#[repr(Rust)]
pub fn str_to_list<S: ToString>(t: &str, split_test: S) -> List<String> {
let split_test = split_test.to_string();
let split = t.split(&split_test);
let collect = split.collect::<Vec<&str>>();
let mut l = List::new();
for i in collect {
l.append_of_end(i.to_string());
}
l
}
#[repr(Rust)]
pub fn string_to_list_char<S: ToString>(t: String, split_test: char) -> List<String> {
let split = t.split(split_test);
let collect = split.collect::<Vec<&str>>();
let mut l = List::new();
let _: Vec<()> = vec![];
for i in collect {
l.append_of_end(i.to_string());
}
l
}
}