Giter VIP home page Giter VIP logo

Comments (4)

jonhoo avatar jonhoo commented on June 9, 2024 2

Hehe, I have now graduated 🎉 :)

from left-right.

jeff-hiner avatar jeff-hiner commented on June 9, 2024 1

Thanks! Sorry, I didn't realize you were in the middle of your PhD defense. How did it go?

from left-right.

jonhoo avatar jonhoo commented on June 9, 2024 1

I'm going to close this following the merge of #73 :)

from left-right.

jonhoo avatar jonhoo commented on June 9, 2024

Sorry for the super late reply!

So, this is a tricky one. The hashbag is there very specifically to support efficient removes from value sets, and there it's pretty much impossible to avoid. I think that the workaround here would be to have a complete copy of the implementation that was single-valued (as you observed, this is #45), but that's also a sub-optimal solution.

Now, in your particular case, since you don't need to remove individual values from a value set, you can actually work around this by sticking a newtype around your tuple and just implement Hash + Eq for it with a trivial implementation that always returns true for equality and always hashes to the same value. It feels dirty, but it should work as long as you only ever use that newtype for your thing when it's placed in an evmap value, and as long as you never have more than one value in any given value set. If you do need to have multiple values per value set, but just don't need support for individual removes, you'd have to make Eq return false instead, but that violates the spec of Eq (it's no longer reflexive) and is more likely to cause unexpected issues.

The broader solution here, I think, is to find a way to implement #45 without copying the whole implementation. I'll put a comment over there with some thoughts.

from left-right.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.