2 个不稳定版本
0.2.0 | 2023 年 3 月 16 日 |
---|---|
0.1.0 | 2019 年 9 月 10 日 |
#559 在 Rust 模式
39,694 每月下载量
在 7 个crate中使用(其中 3 个直接使用)
8KB
84 行
Take Until
此 crate 为迭代器添加了 take_until
方法作为扩展。
示例
从字节数组中解析下一个基 128 变长整数。
use take_until::TakeUntilExt;
let varint = &[0b1010_1100u8, 0b0000_0010, 0b1000_0001];
let int: u32 = varint
.iter()
.take_until(|b| (**b & 0b1000_0000) == 0)
.enumerate()
.fold(0, |acc, (i, b)| {
acc | ((*b & 0b0111_1111) as u32) << (i * 7)
});
assert_eq!(300, int);
Take Until 与 Take While(来自标准库)对比
use take_until::TakeUntilExt;
fn main() {
let items = [1, 2, 3, 4, -5, -6, -7, -8];
let filtered_take_while = items
.into_iter()
.take_while(|x| *x > 0)
.collect::<Vec<i32>>();
let filtered_take_until = items
.into_iter()
.take_until(|x| *x <= 0)
.collect::<Vec<i32>>();
assert_eq!([1, 2, 3, 4], filtered_take_while.as_slice());
assert_eq!([1, 2, 3, 4, -5], filtered_take_until.as_slice());
}
MSRV
MSRV 是 1.56.1
稳定版。