imbl/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 pub(crate) use crate::config::VECTOR_CHUNK_SIZE as CHUNK_SIZE;
11 use imbl_sized_chunks as sc;
12
13 pub(crate) type Chunk<A> = sc::sized_chunk::Chunk<A, CHUNK_SIZE>;
14}