8个版本

0.1.7 2022年3月19日
0.1.6 2021年4月22日
0.1.5 2020年8月1日
0.1.4 2020年7月29日
0.1.3 2020年6月29日

#44无标准库

Download history • Rust 包仓库 3186/week @ 2024-03-14 • Rust 包仓库 9396/week @ 2024-03-21 • Rust 包仓库 14926/week @ 2024-03-28 • Rust 包仓库 22526/week @ 2024-04-04 • Rust 包仓库 31727/week @ 2024-04-11 • Rust 包仓库 26378/week @ 2024-04-18 • Rust 包仓库 33212/week @ 2024-04-25 • Rust 包仓库 27598/week @ 2024-05-02 • Rust 包仓库 27571/week @ 2024-05-09 • Rust 包仓库 29167/week @ 2024-05-16 • Rust 包仓库 26441/week @ 2024-05-23 • Rust 包仓库 35508/week @ 2024-05-30 • Rust 包仓库 30291/week @ 2024-06-06 • Rust 包仓库 38770/week @ 2024-06-13 • Rust 包仓库 36118/week @ 2024-06-20 • Rust 包仓库 37619/week @ 2024-06-27 • Rust 包仓库

150,829 每月下载量
用于 63 个包 (6 直接)

MIT 许可

6KB
78

Trim in-place

CI

此包用于扩展 String 以实现原地字符串裁剪。

用法

use trim_in_place::TrimInPlace;

let mut s = String::from(" 1234 abcd  ");

s.trim_in_place();

assert_eq!("1234 abcd", s);

基准测试

cargo bench

Crates.io

https://crates.io/crates/trim-in-place

文档

https://docs.rs/trim-in-place

许可

MIT


lib.rs:

Trim in-place

此包用于扩展 String 以实现原地字符串裁剪。

用法

use trim_in_place::TrimInPlace;

let mut s = String::from(" 1234 abcd  ");

s.trim_in_place();

assert_eq!("1234 abcd", s);

基准测试

cargo bench

无运行时依赖