luaur-common 0.1.2

Foundational data structures and flags for the luaur Luau-in-Rust toolchain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::functions::join_impl::joinImpl;
use alloc::string::String;
use alloc::vec::Vec;

pub fn join(segments: &Vec<String>, delimiter: &str) -> String {
    joinImpl(segments, delimiter)
}

// Pinned overload name advertised by the dependency cards.
#[allow(unused_imports, non_snake_case)]
pub use join as join_vector_string_string_view;