mirror of
https://github.com/nushell/nushell.git
synced 2025-04-03 14:10:41 +02:00
* Initialize join.rs as a copy of collect.rs * Evolve StrCollect into StrJoin * Replace 'str collect' with 'str join' everywhere git ls-files | lines | par-each { |it| sed -i 's,str collect,str join,g' $it } * Deprecate 'str collect' * Revert "Deprecate 'str collect'" This reverts commit959d14203e
. * Change `str collect` help message to say that it is deprecated We cannot remove `str collect` currently (i.e. via `nu_protocol::ShellError::DeprecatedCommand` since a prominent project uses the API:b85542c31c/src/virtualenv/activation/nushell/activate.nu (L43)
32 lines
754 B
Rust
32 lines
754 B
Rust
mod case;
|
|
mod collect;
|
|
mod contains;
|
|
mod distance;
|
|
mod ends_with;
|
|
mod index_of;
|
|
mod join;
|
|
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 distance::SubCommand as StrDistance;
|
|
pub use ends_with::SubCommand as StrEndswith;
|
|
pub use index_of::SubCommand as StrIndexOf;
|
|
pub use join::*;
|
|
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;
|