reifydb_core/value/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3
4//! In-memory representation of query results and the structures that carry rows from the engine to the consumer.
5//!
6//! Holds the columnar data model, the row-oriented presentation layer used by display code, and the in-memory index
7//! types used by the engine. Together these form the runtime representation that everything above the storage tier
8//! (engine, subscriptions, the wire layer, the SDK) operates on.
9
10pub mod column;
11pub mod frame;
12pub mod index;