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
//! Small operation values shared by representation and algorithm contracts.
/// Regularized boolean set operation on solids.
///
/// The operand set matches `axiolid-overlay`'s planar contract so 2D and 3D
/// booleans describe the same algebra. It is deliberately *not* a mirror of any
/// one backend's operation enum: `SymmetricDifference` exists here because the
/// set algebra has it, not because a provider offered it.
///
/// Marked `#[non_exhaustive]` so a future operand cannot break downstream
/// `match` arms.