reifydb_type/util/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3
4//! Small dependency-free utilities used throughout the workspace: the bit-vector backing none-bitmaps and row
5//! masks, the copy-on-write vector `CowVec` that the storage tier uses for delta lists, base58/base64/hex codecs,
6//! Unicode helpers, and float formatting that respects the workspace's text rendering rules.
7//!
8//! Everything here has zero ReifyDB-internal dependencies on purpose - so anything in the workspace can pull from
9//! it without creating a cycle.
10
11pub mod bitvec;
12pub mod cowvec;
13pub mod float_format;
14
15pub mod base58;
16pub mod base64;
17pub mod hex;
18pub mod unicode;