We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2c9a5e commit 21e6645Copy full SHA for 21e6645
src/arena.rs
@@ -1,3 +1,6 @@
1
+//! Module containing the `Arena` and `Uninitialized` structs. For convenience the
2
+//! `Arena` is exported at the root of the crate.
3
+
4
use std::mem::size_of;
5
use std::cell::Cell;
6
src/lib.rs
@@ -96,7 +96,7 @@ pub mod cell;
96
pub mod map;
97
pub mod set;
98
pub mod list;
99
-mod arena;
+pub mod arena;
100
mod bloom;
101
mod impl_partial_eq;
102
mod impl_debug;
0 commit comments