pub use dbutils::leb128;
#[inline]
pub(crate) const fn merge_lengths(a: u32, b: u32) -> u64 {
(a as u64) << 32 | b as u64
}
#[inline]
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
pub(crate) const fn split_lengths(len: u64) -> (u32, u32) {
((len >> 32) as u32, len as u32)
}