[go: up one dir, main page]

crossbeam-utils 0.4.0

Utilities for concurrent programming
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg_attr(feature = "nightly", feature(cfg_target_has_atomic, integer_atomics))]
#![cfg_attr(not(feature = "use_std"), no_std)]

#[cfg(feature = "use_std")]
extern crate core;

pub mod cache_padded;
#[cfg(feature = "use_std")]
pub mod scoped;
pub mod consume;