1 个不稳定版本

0.1.0 2022年11月21日

#13#arc-mutex

WTFPL 许可协议

3KB

arcm

宏用于更简洁地创建 Arc<Mutex<_>>

arcm!(42) 扩展为 Arc::new(Mutex::new(42))

arcm!(42, u8) 扩展为 Arc::new(Mutex::<u8>::new(42)) 以提供显式的类型提示。

还有一个 ArcM 类型别名。

就是这样。

许可协议

此代码可在 WTFPL 下使用。


lib.rs:

提供更简洁创建 Arc<Mutex<_>> 的宏。

无运行时依赖