CGMossa
CGMossa
I think that I've hit an issue that is related to this. `Mul` and `Add` doesn't generate the same thing, and I'd like the `Mul` to ressemble the `Add`. Let...
I've found that `windows` is missing from the list. It is such a nice list though..
I ran into this today. Your solution @brendanzab works! But I ended up writing this: ```rust use approx::assert_abs_diff_eq; use std::fmt::Debug; fn array_assert_eq(a: [A; N], b: [A; N]) { a.into_iter() .zip_eq(b.into_iter())...
Thanks. At this point, I just want to be able to disable it, as it is extremely distracting, but I don't want to disable it via the Extension menu, as...
Right, I'm working off main branch of bevy. So this is a future thing. On Thu, Jun 24, 2021, 19:50 Jakob Hellermann ***@***.***> wrote: > That's weird, I depend on...
While using `bevy_ecs`, I want to add entities that has different sets of components attached to them. This means that what I'd ideally want, is a way to construct a...
Can I ask what is the status of this? I'm trying to figure out how to take an `Array2` from `ndarray` and construct `nalgebra::base::Matrix`, and then I found this PR.
This is great! And yes, this is not written somewhere that I could find.. But of course it makes sense as soon as I read that keys, and values has...
Yes I'll totally make a pr. Let me use it for something. On Fri, 29 Oct 2021, 18:56 Maxim Zhiburt, ***@***.***> wrote: > And yes, this is not written somewhere...
I've hit this same sort of issue a couple of this, and I believe there could be a really nice implementation of unzipping. I don't know about `Result`-type though. I...