forked from extern/nushell
28 lines
668 B
Rust
28 lines
668 B
Rust
mod case;
|
|
mod collect;
|
|
mod contains;
|
|
mod ends_with;
|
|
mod index_of;
|
|
mod length;
|
|
mod lpad;
|
|
mod replace;
|
|
mod reverse;
|
|
mod rpad;
|
|
mod starts_with;
|
|
mod substring;
|
|
mod trim;
|
|
|
|
pub use case::*;
|
|
pub use collect::*;
|
|
pub use contains::SubCommand as StrContains;
|
|
pub use ends_with::SubCommand as StrEndswith;
|
|
pub use index_of::SubCommand as StrIndexOf;
|
|
pub use length::SubCommand as StrLength;
|
|
pub use lpad::SubCommand as StrLpad;
|
|
pub use replace::SubCommand as StrReplace;
|
|
pub use reverse::SubCommand as StrReverse;
|
|
pub use rpad::SubCommand as StrRpad;
|
|
pub use starts_with::SubCommand as StrStartsWith;
|
|
pub use substring::SubCommand as StrSubstring;
|
|
pub use trim::Trim as StrTrim;
|