is_sorted icon indicating copy to clipboard operation
is_sorted copied to clipboard

Is an Iterator sorted?

Results 5 is_sorted issues
Sort by recently updated
recently updated
newest added

* Updated Rust `edition` to 2021 and made resp. req. changes (`use` stuff, compiler feature). * Renamed the `use_std` feature to `std`; this is what popular crates commonly use nowadays....

EDIT: Just checking out this repo and doing a: ``` cargo test --features unstable ``` already produces the below issue: ``` running 5 tests test test_gt_f32 ... FAILED test test_gt_f64...

I noticed a simple typo when looking at this on crates.io.

Since `&mut T where T: Iterator` also implements `Iterator` (https://doc.rust-lang.org/stable/std/iter/trait.Iterator.html#impl-Iterator-13), the iterator functions do not take `&mut self` but `self`. For reference, the currently unstable [`std is_sorted`](https://doc.rust-lang.org/stable/std/iter/trait.Iterator.html#method.is_sorted). Also, currently and...

Now that SIMD has reached stable Rust, it would be great if the SIMD acceleration could be moved out of the `unstable` feature!