orx-parallel 4.0.0

Performant parallel computations with an expressive iterator API.
Documentation
1
2
3
4
5
6
use alloc::vec::Vec;
use std::string::{String, ToString};

pub fn inputs(n: usize) -> Vec<String> {
    (0..n).map(|x| x.to_string()).collect()
}