Tony Arcieri

Results 2545 comments of Tony Arcieri

@newpavlov `polyval` is another example yes. Another example is the "soft" backends for the `aes` crate. It would be good when compiling to WASM to use the 64-bit backend

Aah, that's true. Although we may want to do that anyway eventually to do gate the use of architecture-specific ASM, which would really help boost the speed. But your point...

For any other use case but yours, it seems weird to have to have a value of your numeric type in order to call `zero()` on it

@EdmundsEcho expressing what you want would be natural with [variant types](https://github.com/rust-lang/lang-team/issues/122), since you could impl `Zero::zero` for each variant type which would return the appropriate enum variant. Unfortunately, they are...

This doesn't seem to do a whole lot as-is. What else are you planning on impl'ing `IsConstructed` on?

You should try to add it there, as I think for what you’re proposing the blanket impls(?) would conflict

We should definitely remove the offending impl which leaks `toml` in the public API, but merging this and bumping major version sounds fine to me. Before a final release we...