reifydb_value/util/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Small utilities: the bit-vector behind none-bitmaps and row masks, the copy-on-write `CowVec`,
5//! base58/base64/hex codecs, Unicode helpers and float formatting. Everything here has zero
6//! ReifyDB-internal dependencies on purpose, so any crate can pull from it without a cycle.
7
8pub mod bitvec;
9pub mod cowvec;
10pub mod float_format;
11
12pub mod base58;
13pub mod base64;
14pub mod hash;
15pub mod hex;
16pub mod unicode;