w8r / avl

:eyeglasses: Fast AVL tree for Node and browser

Home Page:https://npm.runkit.com/avl

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Async functions

rbndg opened this issue · comments

commented

I think it's worth to include some async versions of some of the functions like range and forEach,
it should be easy by using async's whilst function http://caolan.github.io/async/docs.html#whilst

commented

There is no point in async functions here. This library operates only on memory structures. If you want something to not block the UI thread, move the use of this library into a web worker. No point in interleaving all calls through promises.