icydb_core/value/ops/mod.rs
1//! Module: value::ops
2//!
3//! Responsibility: behavior-oriented operations over the `Value` representation.
4//! Does not own: the `Value` enum shape or persistence encoding.
5//! Boundary: text, collection, numeric, and ordering helpers.
6
7pub mod collection;
8pub mod numeric;
9pub mod ordering;
10pub mod partial_ord;
11pub mod text;