AnthonyMikh

Results 5 issues of AnthonyMikh

As it was pointed out in #883, the deserialization code for `Matrix` backed by `VecStorage` was not checking that deserialized data actually has as much elements as dictated by dimensions....

Creating a `Delay` is a relatively heavy operation which involves creating two mutexes and an `Arc`, so it makes sense to avoid calling `Delay::new` repeatedly. In this change I introduced...

The following code is problematic: https://github.com/seiflotfy/rust-cuckoofilter/blob/c7fea791f1c21deda02a263e69f0fec428e10c61/src/bucket.rs#L96-L105 This code can panic for two reasons: 1) `fingerprints` contains more than `BUCKET_SIZE` chunks; 2) `fingerprints` can't be divided evenly into `FINGERPRINT_SIZE`d chunks (`slice_copy`...

After #106943, which made `Take` implement `ExactSizeIterator`, part of documentation about difference from `repeat(x).take(n)` is no longer valid. @rustbot labels: +A-docs, +A-iterators

A-docs
S-waiting-on-bors
A-iterators
T-libs

Not only this feature is not used, I believe nightly features should not be in docs for stable items. @rustbot labels: +A-docs

A-docs
S-waiting-on-review
T-libs