Maybe A Better getSequence() method
What problem does this feature solve?
Improve the performance of getSequence method by using bit operations
What does the proposed API look like?
// packages/runtime-core/src/renderer.ts line 2306
c = ((u + v) / 2) | 0
// change to
c = u + ((v - u) >> 1) | 0