Col index 1 2 3 4 5 6 7 8 9 10 11 12 13class val ColIndex """ 1-based column index. Bounds checking happens at row access time. """ let _n: U16 new val create(n: U16) => _n = n fun apply(): U16 => _n fun string(): String iso^ => _n.string()