reifydb-core 0.6.0

Core database interfaces and data structures for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright (c) 2026 ReifyDB

//! Read-only, structurally-typed projections over columns.
//!
//! The `group_by` view groups column rows by key without copying the underlying data, so aggregations can iterate in
//! group order without materialising an intermediate sorted column.

pub mod group_by;