thread-count 0.3.1

Get the amount of threads in the current process
Documentation
1
2
3
4
5
6
7
//! Fallback if no OS is matched.
use std::num::NonZeroUsize;

#[inline]
pub(crate) fn thread_count() -> Option<NonZeroUsize> {
    None
}