To install dependencies:
bun installTo run:
bun run src/index.tsTo run the HTTP server:
bun run src/server/index.tsThis project was created using bun init in bun v1.2.19. Bun is a fast all-in-one JavaScript runtime.
FenwickOrderedList.scan(min, max)returns values in the half-open interval[min, max): includesmin, excludesmax.FenwickOrderedColumn.scan(min, max)forwards toFenwickOrderedList.scanand has the same[min, max)semantics.