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.