John-John Tedro

Results 237 comments of John-John Tedro

Actually looking over the [docs of `FromFn`](https://docs.rs/genco/latest/genco/tokens/struct.FromFn.html) it seems to be missing a forwarding `Clone` and `Copy` impl. I was sure it had one but I'm clearly misremembering. That makes...

Also of you have the time: posting a representative example of how you are trying to use genco would also be helpful. I might be able to suggest a different...

Cheers! > I was able to get my code working by using a for loop calling `quote_in` in succession on a mut Token. It works, but it doesn't have the...

Example should now build, and they've been reconfigured so that they shouldn't break as easily. They now depend on the git version of the crate rather than a published one.

I'm working on getting everything into shape for the stable release of GATs in about 6 weeks in #4. I'll be opening an issue to gather feedback about what kind...

We have added some preliminary support for frame-oriented iteration in git now. It would be great if you could take a look and see if it corresponds to what you're...

What's been added so far are the following: Implementations for: * `audio::buf::Interleaved` * `audio::buf::Sequential` * `audio::wrap::Interleaved` * `audio::wrap::Sequential` ```rust /// A buffer which has a unifom channel size. pub trait...

> Instead of converting internal representation of keys from `Rc` to `Rc`, how about implementing it with `std::hash::Hash`? That would make sense to me! If you use something like [twox-hash](https://docs.rs/twox-hash/latest/twox_hash/)...

@hamza1311 Tried a branch which uses hashing (but does not use zig-zag encoding): https://github.com/udoprog/yew/commit/key-hashing Size differences when cherry picked on top of 0.19.3 and used in one of my applications...

I replaced the current propsal with one that does hashing, and `twox-hash` with 128-bit keys is hidden behind a feature flag w/ the same name. This is the result from...