Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_platform/src/cell/mod.rs
6849 views
1
//! Provides cell primitives.
2
//!
3
//! This is a drop-in replacement for `std::cell::SyncCell`/`std::cell::SyncUnsafeCell`.
4
5
mod sync_cell;
6
mod sync_unsafe_cell;
7
8
pub use sync_cell::SyncCell;
9
pub use sync_unsafe_cell::SyncUnsafeCell;
10
11