reifydb-core 0.5.6

Core database interfaces and data structures for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 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;