Noah C. Benson
Noah C. Benson
I realize this is possibly a dead thread, and I'm not even 100% sure of the current status of `FunctionalCollections.jl`, but FWIW, I've written and currently maintain a library called...
I should have mentioned this issue in pull request #243. That pull request causes `pm.keys()` to return a `PSet` object (this seemed right—`PSet` already uses a `PMap` for its implementation...
I took a look at the MagicStack library earlier—IMHO it's 80% of the way there for maps? That said I didn't actually pull it and do tests or anything, so...
Well, short answer is that I have a woking prototype of it that has even been extensively tested already... it's just written in Julia 😅. This kind of low-level Julia...
@tobgu Here's [the repo](https://github.com/noahbenson/phamt) for this project—so far just the initial commit of the mostly-written-but-untested implementation. I don't recommend trying to use it yet, but most of the code is...
Yeah—the collision detection can pretty easily be handled by having one PHAMT (`p1`) map key-hashes to PHAMTs (or just lists) of indices then to have a separate PHAMT (`p2`) that...
Hi there! I'm the author of [neuropythy](https://github.com/noahbenson/neuropythy)—just wanted to drop a note in this thread that neuropythy supports a lot of these surface operations mentioned here. I'm happy to help...
I'm not sure that calculating this is easy, but I'd be glad to be proven wrong. The issue as I see it is that you'd need to approximate the geodesic...
Hmm, not that I'm aware of! I haven't really studied the Julia GC or allocation system in depth yet myself. All the allocations in `Air`, I believe, are either made...
Hey! Thanks for catching this—the issue is actually coming from the `pimms` library, and I have a fix, but I'm having trouble with my testing environments at the moment (`numpy`'s...