MCPcopy Create free account
hub / github.com/TanStack/db / size

Method size

packages/db-ivm/src/operators/topKArray.ts:91–96  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

89 }
90
91 get size(): number {
92 const offset = this.#topKStart
93 const limit = this.#topKEnd - this.#topKStart
94 const available = this.#sortedValues.length - offset
95 return Math.max(0, Math.min(limit, available))
96 }
97
98 /**
99 * Moves the topK window

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected