harold

Results 45 comments of harold

(Also, is there a heuristic for plus-ing the intersection up from empty if it's small, versus minus-ing it down from full (as the current code does) if it's big? Probably...

See also #87 — ideally these new methods won't just add elements one at a time, but will do something faster, to allow for initializing a collection with, say, a...

…relatedly, is it possible to implement `IntTree.minusRange()` in an efficient way?

@rexkenley just in case you didn't see it above, if you're looking for a workaround before this gets fixed, try adding this to your `package.json`: ``` "overrides": { "webpack": "^5.52.0"...

@rexkenley not sure, sorry. the `overrides` hack worked for me back when I had this problem. good luck!

Thanks good point. To see the warnings, add this to the bottom of `build.gradle`: ```gradle allprojects { gradle.projectsEvaluated { tasks.withType(JavaCompile) { options.compilerArgs

adding `@SuppressWarnings("deprecation")` above a class seems to fix it, but isn't ideal since that will suppress any other deprecation warnings we might introduce… would be nice to suppress just these...

Thanks @Albul that's really useful! Looks like there's lots of room for improvement in TreePVector. And good to know about the ConsPStack recursion bugs, I'll make sure that's fixed in...

Awesome thanks, that's very interesting and useful data