Expand description
General utilities for first-party Bevy engine crates.
Modules§
- prelude
- The utilities prelude.
- synccell
- A reimplementation of the currently unstable
std::sync::Exclusive
- syncunsafecell
- A reimplementation of the currently unstable
std::cell::SyncUnsafeCell
Macros§
- once
- Call some expression only once per call site.
Structs§
- OnDrop
- A type which calls a function when dropped. This can be used to ensure that cleanup code is run even in case of a panic.
- Parallel
std
- A cohesive set of thread-local values of a given type.
Traits§
- PreHash
MapExt alloc
- Extension methods intended to add functionality to
PreHashMap
.
Functions§
- default
- An ergonomic abbreviation for
Default::default()
to make initializing structs easier.