1
Fork 0

Introduce the GroupBy and GroupByMut Iterators

This commit is contained in:
Clément Renault 2020-12-10 10:16:29 +01:00
parent e413d89aa7
commit a891f6edfe
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
7 changed files with 280 additions and 0 deletions

View file

@ -118,6 +118,8 @@ pub use core::slice::{RChunks, RChunksExact, RChunksExactMut, RChunksMut};
pub use core::slice::{RSplit, RSplitMut};
#[stable(feature = "rust1", since = "1.0.0")]
pub use core::slice::{RSplitN, RSplitNMut, SplitN, SplitNMut};
#[unstable(feature = "slice_group_by", issue = "0")]
pub use core::slice::{GroupBy, GroupByMut};
////////////////////////////////////////////////////////////////////////////////
// Basic slice extension methods