1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

// cell
// ucell
// zcell

// range
// cellrange

// zcell or range
// - 10 -> range lower bound
// - 11 -> range upper bound
// - 0  -> zcell (like a range, but << 1 and with a sentinel bit coding the depth)

pub mod cell;
pub mod cellrange;
pub mod cellcellrange;
pub mod range;
pub mod valuedcell;