Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Processor

Check number of logical cpu cores

num_cpus-badge cat-hardware-support-badge

Shows the number of logical CPU cores in current machine using [num_cpus::get].

fn main() {
    println!("Number of logical cores is {}", num_cpus::get());
}