Files
nushell/crates/nu-command/src/strings/str_/mod.rs
onthebridgetonowhere e756a9ea04 Port str indexof (#327)
* Port str indexof

* Fix clippy warning

Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
2021-11-12 08:45:39 +13:00

18 lines
433 B
Rust

mod capitalize;
mod case;
mod collect;
mod contains;
mod downcase;
mod ends_with;
mod find_replace;
mod index_of;
pub use capitalize::SubCommand as StrCapitalize;
pub use case::*;
pub use collect::*;
pub use contains::SubCommand as StrContains;
pub use downcase::SubCommand as StrDowncase;
pub use ends_with::SubCommand as StrEndswith;
pub use find_replace::SubCommand as StrFindReplace;
pub use index_of::SubCommand as StrIndexOf;