macro_rules! arc {
($e:expr) => { ... };
}Expand description
Wraps an expression in an Arc::new().
Provides thread-safe shared ownership via Atomic Reference Counting.
macro_rules! arc {
($e:expr) => { ... };
}Wraps an expression in an Arc::new().
Provides thread-safe shared ownership via Atomic Reference Counting.