mirror of
https://github.com/nushell/nushell.git
synced 2025-05-02 17:14:27 +02:00
# Description This PR fully deprecates `str collect`. It's been "half-deprecatd" for a long time. This takes it all the way and disallows the command in favor of `str join`. # User-Facing Changes No more `str collect` # Tests + Formatting Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass - `cargo run -- crates/nu-utils/standard_library/tests.nu` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` # After Submitting If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date.
26 lines
627 B
Rust
26 lines
627 B
Rust
mod case;
|
|
mod contains;
|
|
mod distance;
|
|
mod ends_with;
|
|
mod index_of;
|
|
mod join;
|
|
mod length;
|
|
mod replace;
|
|
mod reverse;
|
|
mod starts_with;
|
|
mod substring;
|
|
mod trim;
|
|
|
|
pub use case::*;
|
|
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 replace::SubCommand as StrReplace;
|
|
pub use reverse::SubCommand as StrReverse;
|
|
pub use starts_with::SubCommand as StrStartsWith;
|
|
pub use substring::SubCommand as StrSubstring;
|
|
pub use trim::Trim as StrTrim;
|