components
components copied to clipboard
Refactor `windowed` to use a backing array interface
Currently windowed
reads & renders from this.rows
which is an array.
By changing that to an interface it can be swapped to by anything that's a synchronous API like C++ or lmdb
This is done.
This is not done yet, the rows
field is still public instead of private which does not allow it to be swapped easily without a breaking change.
Oh haha sorry my bad :)