macro_rules! arc { ($val:expr) => { ... }; }
Macro for creating an Arc<T> from a value
Arc<T>
use hurry::arc; let x = arc!(5); assert_eq!(*x, 5);