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
Weakpointers are never created from thisArcor clones. - try_
arc_ ๐ โunwrap - Can be used instead of
Arc::try_unwraponly ifWeakpointers are never created from thisArcor clones.