#fun #iterator #collection #prime #tinker

已删除 funtools

一组可用于探索的有趣迭代器集合

0.2.0 2021年7月5日
0.1.1 2021年7月5日
0.1.0 2021年6月27日

#113#prime

GPL-2.0 许可证

6KB
144

funtools

funtools 包含一组可用于探索的有趣迭代器。例如,请参阅 测试目录

use funtools::Prime;

let first_hundred = vec![2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97];
let primes = Prime::new().take_while(|x| x < &100).collect::<Vec<_>>();
assert_eq!(first_hundred, primes);
use funtools::Prime;

let valid = Some(9973); 
let prime = Prime::new().take_while(|x| x < &10000).last();
assert_eq!(valid, prime);

lib.rs:

funtools 包含一组可用于探索的有趣迭代器。例如,请参阅 测试目录

无运行时依赖