-
Rust❤️ ] rayon을 활용한 벡터에 이쁘게 숫자 차례대로 담기코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 14. 06:46728x90
use rayon::prelude::*; use std::sync::mpsc::channel; fn main() { let (sender, receiver) = channel(); (0..5) .into_par_iter() .for_each_with(sender, |s, x| s.send(x).unwrap()); let mut res: Vec<_> = receiver.iter().collect(); res.sort(); println!("{res:?}"); }
cargo run Compiling rust_polyglot v0.1.0 (/Users/globalyoung/Documents/Project/Github/rust_project/rust_polyglot) Finished dev [unoptimized + debuginfo] target(s) in 0.21s Running `target/debug/rust_polyglot` [0, 1, 2, 3, 4]
출처 :
https://docs.rs/rayon/1.2.0/rayon/iter/trait.ParallelIterator.html
반응형'코딩Coding > 한글Rust강의★내가★공부하려고만듬' 카테고리의 다른 글
macOS) Rust programming language Path Setting (0) 2022.06.17 Porting Java's❤️ConcurrentHashMap ❤️to Rust (part 1~3) (0) 2022.06.16 Rust❤️동영상 만들 예정) todo앱 만들기 wasm최신 웹기술 들어감 (0) 2022.06.16 Rust❤️) rayon을 활용하여 벡터에 담은 숫자를 차례대로 출력하기 모든 답은 공식 문서에 ^^; (0) 2022.06.14 Rust❤️ 벡터에 Vector내가 원하는 숫자 원하는 크기만큼 랜덤 숫자 담기 ^^; (0) 2022.06.13 동영상만들예정❤️Rust❤️wgpu__3D게임 Tutorial연습용 코드로 딱 좋다!_rayon상급자 버젼 ㅎㅎㅎ (0) 2022.06.12 Rust vs Cpp ❤️threads 한글 강의 (0) 2022.06.11 Rust Futures❤️에 대해 공부하기_Concurrency기초 (0) 2022.06.11