Expand description
Re-exports§
pub use thread_pool::ThreadPool;pub use parallel::ParallelIterator;pub use parallel::IntoParallelIterator;pub use parallel_vec::ParallelVec;pub use parallel_vec::IntoParallelVec;pub use advanced::parallel_sort;pub use advanced::parallel_sort_by;pub use advanced::parallel_zip;pub use advanced::parallel_chunks;pub use advanced::parallel_partition_advanced;pub use work_stealing::WorkStealingPool;pub use work_stealing::work_stealing_map;pub use config::ThreadPoolConfig;pub use config::set_global_config;pub use config::get_global_config;
Modules§
- advanced
- Advanced parallel operations
- config
- Custom thread pool configuration
- executor
- Parallel execution engine
- parallel
- Parallel iterator traits and implementations
- parallel_
vec - High-performance parallel iterators with true parallelism
- prelude
- Prelude module for convenient imports
- scope
- Scoped thread spawning - wrapper around std::thread::scope
- simd
- SIMD-accelerated operations
- thread_
pool - Thread pool implementation
- work_
stealing - Work Stealing Scheduler
Constants§
- VERSION
- Version information
Functions§
- scope
- Creates a scope for spawning scoped threads.