package mem type CellKind int const ( CellKindEmpty CellKind = iota CellKindString CellKindArray CellKindEscaped ) type cell struct { kind CellKind refs int data any }