avila-parallel 0.4.0

Zero-dependency parallel library with work stealing, SIMD, lock-free operations, adaptive execution, and memory-efficient algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
//! Scoped thread spawning - wrapper around std::thread::scope

/// A scope for spawning threads (re-export of std::thread::Scope)
pub type Scope<'scope, 'env> = std::thread::Scope<'scope, 'env>;

/// A handle to a scoped thread (re-export of std::thread::ScopedJoinHandle)
pub type ScopedJoinHandle<'scope, T> = std::thread::ScopedJoinHandle<'scope, T>;

// Re-export std::thread::scope directly
pub use std::thread::scope;