Macro arc

Source
macro_rules! arc {
    ($val:expr) => { ... };
}
Expand description

Creates a new atomic reference counted pointer.

§Arguments

  • T - The type of value to be reference counted.

§Returns

  • Arc<T> - A thread-safe reference-counting pointer.