-
Notifications
You must be signed in to change notification settings - Fork 28
feat: Add advanced set operations #48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
taylorsw04
wants to merge
146
commits into
qwertie:master
Choose a base branch
from
taylorsw04:set-operations
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds advanced set operations to the extended/ library:
Note: symmetric difference (merge minus intersection) can be computed via union + combineFn that excludes all shared keys.
Each of the above methods returns a new tree. To avoid the allocation overhead (e.g. if the result is only to be enumerated), iteration/callback flavors of each have been added (intersect -> forEachKeyInBoth, subtract -> forEachKeyNotIn).
Finally, a bulk loading algorithm has been exposed allowing consumers to build a BTree from a sorted list of entries in O(N) time.
All of the above has been added to BTreeEx as well as exposed via standalone methods for optimal tree-shaking.
Size report:
Entry Raw Size Minified Gzipped
btree 71.43 KB 19.49 KB 5.50 KB
extended/bulkLoad 4.96 KB 1.95 KB 932 B
extended/decompose 34.15 KB 8.01 KB 2.80 KB
extended/diffAgainst 12.75 KB 2.47 KB 1.05 KB
extended/forEachKeyInBoth 3.59 KB 1.09 KB 455 B
extended/forEachKeyNotIn 4.25 KB 1.23 KB 484 B
extended/index 11.02 KB 2.78 KB 987 B
extended/intersect 2.06 KB 732 B 403 B
extended/parallelWalk 6.59 KB 1.92 KB 935 B
extended/shared 4.28 KB 1.60 KB 606 B
extended/subtract 2.14 KB 532 B 328 B
extended/union 1.92 KB 472 B 294 B
BTreeEx total 87.71 KB 22.75 KB 9.15 KB