You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The API now strictly uses standard JavaScript arrays (bigint[]) instead of BigUint64Array for passing and receiving lists of node IDs. This improves ergonomics but requires
updating existing code.
Changes:
Changed newWithChildren to accept bigint[] instead of BigUint64Array.
Changed setChildren to accept bigint[] instead of BigUint64Array.
Changed getDisjointNodeContextMut to accept bigint[] instead of BigUint64Array.
Changed children (getter) to return bigint[] instead of BigUint64Array.
Updated documentation and examples to reflect these changes.
♻️ Refactoring
replace BigUint64Array with plain bigint[] for tree operations (ee445ff)