components icon indicating copy to clipboard operation
components copied to clipboard

Refactor `windowed` to use a backing array interface

Open Raynos opened this issue 5 years ago • 3 comments

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

Raynos avatar Dec 17 '19 19:12 Raynos

This is done.

heapwolf avatar Apr 06 '20 09:04 heapwolf

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.

Raynos avatar Apr 06 '20 09:04 Raynos

Oh haha sorry my bad :)

heapwolf avatar Apr 09 '20 09:04 heapwolf