stabby-abi 72.1.8

stabby's core ABI, you shouldn't add this crate to your dependencies, only `stabby`.
Documentation
1
2
3
4
5
6
7
/// BTrees built for sharing
///
/// ArcBTrees are build to be cheap to clone through atomic reference counts.
///
/// Mutating an ArcBTree that whose ownership is shared will result in every node from the insertion spot
/// to the root to be copied, while the remaining nodes will just see their reference counts increase.
pub mod arc_btree;