Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't zero the array on initialization
Using `mem::uninitialized` is potentially faster than `mem::zeroed`, and doesn't remove any safety (since both uninitialized memory and zeroed memory are unsafe to read from in general).
- Loading branch information