Functionsยง
- arc_unwrap ๐ โCan be used instead of
Arc::try_unwrap(arc).unwrap()
when it is guaranteed to succeed. - is_arc_unique ๐Guarantees uniqueness only if
Weak
pointers are never created from thisArc
or clones. - try_arc_unwrap ๐ โCan be used instead of
Arc::try_unwrap
only ifWeak
pointers are never created from thisArc
or clones.