mirror of
https://github.com/nushell/nushell.git
synced 2025-05-08 17:02:59 +00:00
* adding changes for all-trim option * adding changes for the all-flag and format flag * renaming modules - clippy warning
46 lines
1.4 KiB
Rust
46 lines
1.4 KiB
Rust
mod capitalize;
|
|
mod case;
|
|
mod collect;
|
|
mod command;
|
|
mod contains;
|
|
mod downcase;
|
|
mod ends_with;
|
|
mod find_replace;
|
|
mod index_of;
|
|
mod length;
|
|
mod lpad;
|
|
mod reverse;
|
|
mod rpad;
|
|
mod starts_with;
|
|
mod substring;
|
|
mod to_datetime;
|
|
mod to_decimal;
|
|
mod to_integer;
|
|
mod trim;
|
|
mod upcase;
|
|
|
|
pub use capitalize::SubCommand as StrCapitalize;
|
|
pub use case::camel_case::SubCommand as StrCamelCase;
|
|
pub use case::kebab_case::SubCommand as StrKebabCase;
|
|
pub use case::pascal_case::SubCommand as StrPascalCase;
|
|
pub use case::screaming_snake_case::SubCommand as StrScreamingSnakeCase;
|
|
pub use case::snake_case::SubCommand as StrSnakeCase;
|
|
pub use collect::SubCommand as StrCollect;
|
|
pub use command::Command as Str;
|
|
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;
|
|
pub use length::SubCommand as StrLength;
|
|
pub use lpad::SubCommand as StrLPad;
|
|
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 to_datetime::SubCommand as StrToDatetime;
|
|
pub use to_decimal::SubCommand as StrToDecimal;
|
|
pub use to_integer::SubCommand as StrToInteger;
|
|
pub use trim::Trim as StrTrim;
|
|
pub use upcase::SubCommand as StrUpcase;
|