// This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. pub(crate) mod btree; pub(crate) mod hamt; pub(crate) mod rrb; pub(crate) mod chunk { use crate::config::VectorChunkSize; use sized_chunks as sc; use typenum::Unsigned; pub(crate) type Chunk = sc::sized_chunk::Chunk; pub(crate) const CHUNK_SIZE: usize = VectorChunkSize::USIZE; }