Port str endswith (#321)

* Port str endswith command

* Fix clippy warnings

* Styling

Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
This commit is contained in:
onthebridgetonowhere
2021-11-10 01:51:55 +01:00
committed by GitHub
parent bb1740d733
commit d094f654c3
3 changed files with 126 additions and 0 deletions

View File

@ -3,9 +3,11 @@ mod case;
mod collect;
mod contains;
mod downcase;
mod ends_with;
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;