mumu-string 0.1.0

String functions and tools plugin for the Lava language
Documentation
pub mod concat;
pub mod split;
pub mod join;
pub mod replace;
pub mod contains;
pub mod starts_with;
pub mod ends_with;
pub mod slice;
pub mod repeat;
pub mod index_of;
pub mod last_index_of;

pub use concat::*;
pub use split::*;
pub use join::*;
pub use replace::*;
pub use contains::*;
pub use starts_with::*;
pub use ends_with::*;
pub use slice::*;
pub use repeat::*;
pub use index_of::*;
pub use last_index_of::*;