Coder Social home page Coder Social logo

Comments (3)

junglie85 avatar junglie85 commented on August 16, 2024 1

Ah, you're very right re Or. I understand now why the error is being raised - my query satisfies both L and R so we have two mutable borrows of the same data, which cannot happen.

I originally tried the &Option<Input> and it didn't work, which is why I reached for Or. Thanks for your example - I had the borrow in the wrong place!

from hecs.

Ralith avatar Ralith commented on August 16, 2024

This should work, but it looks like there's a bug here; thanks for the report! In the mean time, what you probably want to do is use the query (&mut Transform, &Physics, &Drawable, Option<&Input>) anyway, which will definitely work.

from hecs.

Ralith avatar Ralith commented on August 16, 2024

On closer review, this is working as intended. Or is documented as:

Holds an L, or an R, or both

When an entity satisfies both, you get both. Two &mut Transforms to the same value would be illegal aliasing. If both clasues of an Or contain the same &mut T, you need to ensure that no entity will ever match both. In your case you should use an Option instead, so that the common references aren't needlessly duplicated.

from hecs.

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.