mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-05-22 03:00:42 +00:00
* update common to edition 2024 * update bitpacker to edition 2024 * update stacker to edition 2024 * update query-grammar to edition 2024 * update sstable to edition 2024 + fmt * fmt * update columnar to edition 2024 * cargo fmt * use None instead of _
20 lines
571 B
Rust
20 lines
571 B
Rust
#![cfg_attr(all(feature = "unstable", test), feature(test))]
|
|
|
|
#[cfg(all(test, feature = "unstable"))]
|
|
extern crate test;
|
|
|
|
mod arena_hashmap;
|
|
mod expull;
|
|
mod fastcmp;
|
|
mod fastcpy;
|
|
mod memory_arena;
|
|
mod shared_arena_hashmap;
|
|
|
|
pub use self::arena_hashmap::ArenaHashMap;
|
|
pub use self::expull::ExpUnrolledLinkedList;
|
|
pub use self::memory_arena::{Addr, MemoryArena};
|
|
pub use self::shared_arena_hashmap::{SharedArenaHashMap, compute_table_memory_size};
|
|
|
|
/// When adding an element in a `ArenaHashMap`, we get a unique id associated to the given key.
|
|
pub type UnorderedId = u32;
|