im/nodes/
mod.rs

1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5pub(crate) mod btree;
6pub(crate) mod hamt;
7pub(crate) mod rrb;
8
9pub(crate) mod chunk {
10    use crate::config::VectorChunkSize;
11    use sized_chunks as sc;
12    use typenum::Unsigned;
13
14    pub(crate) type Chunk<A> = sc::sized_chunk::Chunk<A, VectorChunkSize>;
15    pub(crate) const CHUNK_SIZE: usize = VectorChunkSize::USIZE;
16}