1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//! Shared read-only relation views for the deterministic exact core.
//!
//! This module is intentionally narrow. It gives generic code a deterministic
//! read-only boundary over the shipped exact unary, binary, and n-ary
//! relations without flattening their differences in tuple shape. When code
//! needs to forget provenance, annotation, or temporal support first, pair
//! this module with [`crate::ExactSupport`] or the `ToExact*Relation` traits.
use crate;
use FiniteRelation;
/// A shared read-only view over a finite exact relation.
///
/// `RelationView` is the first G6 shared convergence boundary. It lets generic
/// code inspect tuple count and iterate over stored tuples in deterministic
/// order across the exact unary, binary, and n-ary relation types.
///
/// This first layer intentionally does not cover mutation, membership queries,
/// domain/range inspection, schema access, support materialization,
/// provenance, annotations, temporal support, or backend abstraction. Exact
/// support materialization now lives in the separate G6 capability traits such
/// as [`crate::ExactSupport`] and the `ToExact*Relation` family.
///
/// Iteration order follows the deterministic storage order documented by the
/// implementing relation type. Tuple shapes remain concrete:
///
/// - unary relations yield `&T`;
/// - binary relations yield `&(A, B)`;
/// - n-ary relations yield `&[T]`.
///
/// # Examples
///
/// ```rust
/// use relmath::{FiniteRelation, RelationView, UnaryRelation};
///
/// let values = UnaryRelation::from_values([3, 1, 2]);
///
/// assert_eq!(values.len(), 3);
/// assert_eq!(values.tuples().copied().collect::<Vec<_>>(), vec![1, 2, 3]);
/// ```