Skip to main content

luaur_common/functions/
join_string_utils.rs

1use crate::functions::join_impl::joinImpl;
2use alloc::string::String;
3use alloc::vec::Vec;
4
5#[allow(non_snake_case)]
6pub fn join(segments: &Vec<&str>, delimiter: &str) -> String {
7    joinImpl(segments, delimiter)
8}
9
10// Pinned overload name advertised by the dependency cards.
11#[allow(unused_imports, non_snake_case)]
12pub use join as join_vector_string_view_string_view;