b33e234155
The return of the GroupBy and GroupByMut iterators on slice According to https://github.com/rust-lang/rfcs/pull/2477#issuecomment-742034372, I am opening this PR again, this time I implemented it in safe Rust only, it is therefore much easier to read and is completely safe. This PR proposes to add two new methods to the slice, the `group_by` and `group_by_mut`. These two methods provide a way to iterate over non-overlapping sub-slices of a base slice that are separated by the predicate given by the user (e.g. `Partial::eq`, `|a, b| a.abs() < b.abs()`). ```rust let slice = &[1, 1, 1, 3, 3, 2, 2, 2]; let mut iter = slice.group_by(|a, b| a == b); assert_eq!(iter.next(), Some(&[1, 1, 1][..])); assert_eq!(iter.next(), Some(&[3, 3][..])); assert_eq!(iter.next(), Some(&[2, 2, 2][..])); assert_eq!(iter.next(), None); ``` [An RFC](https://github.com/rust-lang/rfcs/pull/2477) was open 2 years ago but wasn't necessary.
65 lines
1.6 KiB
Rust
65 lines
1.6 KiB
Rust
#![feature(allocator_api)]
|
|
#![feature(box_syntax)]
|
|
#![feature(cow_is_borrowed)]
|
|
#![feature(const_cow_is_borrowed)]
|
|
#![feature(drain_filter)]
|
|
#![feature(exact_size_is_empty)]
|
|
#![feature(new_uninit)]
|
|
#![feature(pattern)]
|
|
#![feature(str_split_once)]
|
|
#![feature(trusted_len)]
|
|
#![feature(try_reserve)]
|
|
#![feature(unboxed_closures)]
|
|
#![feature(associated_type_bounds)]
|
|
#![feature(binary_heap_into_iter_sorted)]
|
|
#![feature(binary_heap_drain_sorted)]
|
|
#![feature(slice_ptr_get)]
|
|
#![feature(split_inclusive)]
|
|
#![feature(binary_heap_retain)]
|
|
#![feature(inplace_iteration)]
|
|
#![feature(iter_map_while)]
|
|
#![feature(int_bits_const)]
|
|
#![feature(vecdeque_binary_search)]
|
|
#![feature(slice_group_by)]
|
|
|
|
use std::collections::hash_map::DefaultHasher;
|
|
use std::hash::{Hash, Hasher};
|
|
|
|
mod arc;
|
|
mod binary_heap;
|
|
mod borrow;
|
|
mod boxed;
|
|
mod btree_set_hash;
|
|
mod cow_str;
|
|
mod fmt;
|
|
mod heap;
|
|
mod linked_list;
|
|
mod rc;
|
|
mod slice;
|
|
mod str;
|
|
mod string;
|
|
mod vec;
|
|
mod vec_deque;
|
|
|
|
fn hash<T: Hash>(t: &T) -> u64 {
|
|
let mut s = DefaultHasher::new();
|
|
t.hash(&mut s);
|
|
s.finish()
|
|
}
|
|
|
|
// FIXME: Instantiated functions with i128 in the signature is not supported in Emscripten.
|
|
// See https://github.com/kripken/emscripten-fastcomp/issues/169
|
|
#[cfg(not(target_os = "emscripten"))]
|
|
#[test]
|
|
fn test_boxed_hasher() {
|
|
let ordinary_hash = hash(&5u32);
|
|
|
|
let mut hasher_1 = Box::new(DefaultHasher::new());
|
|
5u32.hash(&mut hasher_1);
|
|
assert_eq!(ordinary_hash, hasher_1.finish());
|
|
|
|
let mut hasher_2 = Box::new(DefaultHasher::new()) as Box<dyn Hasher>;
|
|
5u32.hash(&mut hasher_2);
|
|
assert_eq!(ordinary_hash, hasher_2.finish());
|
|
}
|