Skip to content

Commit edada59

Browse files
Deprecate GroupBy in favor of ChunkBy
1 parent c508e5e commit edada59

File tree

2 files changed

+25
-18
lines changed

2 files changed

+25
-18
lines changed

src/groupbylazy.rs

+15-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use alloc::vec::{self, Vec};
22
use std::cell::{Cell, RefCell};
33

4-
/// A trait to unify `FnMut` for `GroupBy` with the chunk key in `IntoChunks`
4+
/// A trait to unify `FnMut` for `ChunkBy` with the chunk key in `IntoChunks`
55
trait KeyFunction<A> {
66
type Key;
77
fn call_mut(&mut self, arg: A) -> Self::Key;
@@ -282,10 +282,14 @@ where
282282
}
283283
}
284284

285-
/// `GroupBy` is the storage for the lazy grouping operation.
285+
#[deprecated(note = "Use ChunkBy instead", since = "0.13.0")]
286+
/// See [`ChunkBy`](Itertools::structs::ChunkBy).
287+
pub type GroupBy<K, I, F> = ChunkBy<K, I, F>;
288+
289+
/// `ChunkBy` is the storage for the lazy grouping operation.
286290
///
287291
/// If the groups are consumed in their original order, or if each
288-
/// group is dropped without keeping it around, then `GroupBy` uses
292+
/// group is dropped without keeping it around, then `ChunkBy` uses
289293
/// no allocations. It needs allocations only if several group iterators
290294
/// are alive at the same time.
291295
///
@@ -296,7 +300,7 @@ where
296300
///
297301
/// See [`.group_by()`](crate::Itertools::group_by) for more information.
298302
#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
299-
pub struct GroupBy<K, I, F>
303+
pub struct ChunkBy<K, I, F>
300304
where
301305
I: Iterator,
302306
{
@@ -307,12 +311,12 @@ where
307311
}
308312

309313
/// Create a new
310-
pub fn new<K, J, F>(iter: J, f: F) -> GroupBy<K, J::IntoIter, F>
314+
pub fn new<K, J, F>(iter: J, f: F) -> ChunkBy<K, J::IntoIter, F>
311315
where
312316
J: IntoIterator,
313317
F: FnMut(&J::Item) -> K,
314318
{
315-
GroupBy {
319+
ChunkBy {
316320
inner: RefCell::new(GroupInner {
317321
key: f,
318322
iter: iter.into_iter(),
@@ -329,7 +333,7 @@ where
329333
}
330334
}
331335

332-
impl<K, I, F> GroupBy<K, I, F>
336+
impl<K, I, F> ChunkBy<K, I, F>
333337
where
334338
I: Iterator,
335339
{
@@ -348,7 +352,7 @@ where
348352
}
349353
}
350354

351-
impl<'a, K, I, F> IntoIterator for &'a GroupBy<K, I, F>
355+
impl<'a, K, I, F> IntoIterator for &'a ChunkBy<K, I, F>
352356
where
353357
I: Iterator,
354358
I::Item: 'a,
@@ -377,7 +381,7 @@ where
377381
K: 'a,
378382
F: 'a,
379383
{
380-
parent: &'a GroupBy<K, I, F>,
384+
parent: &'a ChunkBy<K, I, F>,
381385
}
382386

383387
impl<'a, K, I, F> Iterator for Groups<'a, K, I, F>
@@ -418,7 +422,7 @@ where
418422
K: 'a,
419423
F: 'a,
420424
{
421-
parent: &'a GroupBy<K, I, F>,
425+
parent: &'a ChunkBy<K, I, F>,
422426
index: usize,
423427
first: Option<I::Item>,
424428
}
@@ -476,7 +480,7 @@ where
476480

477481
/// `ChunkLazy` is the storage for a lazy chunking operation.
478482
///
479-
/// `IntoChunks` behaves just like `GroupBy`: it is iterable, and
483+
/// `IntoChunks` behaves just like `ChunkBy`: it is iterable, and
480484
/// it only buffers if several chunk iterators are alive at the same time.
481485
///
482486
/// This type implements [`IntoIterator`] (it is **not** an iterator

src/lib.rs

+10-7
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,11 @@ pub mod structs {
9999
pub use crate::exactly_one_err::ExactlyOneError;
100100
pub use crate::flatten_ok::FlattenOk;
101101
pub use crate::format::{Format, FormatWith};
102+
#[allow(deprecated)]
103+
#[cfg(feature = "use_alloc")]
104+
pub use crate::groupbylazy::GroupBy;
102105
#[cfg(feature = "use_alloc")]
103-
pub use crate::groupbylazy::{Chunk, Chunks, Group, GroupBy, Groups, IntoChunks};
106+
pub use crate::groupbylazy::{Chunk, ChunkBy, Chunks, Group, Groups, IntoChunks};
104107
#[cfg(feature = "use_std")]
105108
pub use crate::grouping_map::{GroupingMap, GroupingMapBy};
106109
pub use crate::intersperse::{Intersperse, IntersperseWith};
@@ -575,10 +578,10 @@ pub trait Itertools: Iterator {
575578
/// Consecutive elements that map to the same key (“runs”), are assigned
576579
/// to the same group.
577580
///
578-
/// `GroupBy` is the storage for the lazy grouping operation.
581+
/// `ChunkBy` is the storage for the lazy grouping operation.
579582
///
580583
/// If the groups are consumed in order, or if each group's iterator is
581-
/// dropped without keeping it around, then `GroupBy` uses no
584+
/// dropped without keeping it around, then `ChunkBy` uses no
582585
/// allocations. It needs allocations only if several group iterators
583586
/// are alive at the same time.
584587
///
@@ -597,7 +600,7 @@ pub trait Itertools: Iterator {
597600
/// let data = vec![1, 3, -2, -2, 1, 0, 1, 2];
598601
/// // groups: |---->|------>|--------->|
599602
///
600-
/// // Note: The `&` is significant here, `GroupBy` is iterable
603+
/// // Note: The `&` is significant here, `ChunkBy` is iterable
601604
/// // only by reference. You can also call `.into_iter()` explicitly.
602605
/// let mut data_grouped = Vec::new();
603606
/// for (key, group) in &data.into_iter().chunk_by(|elt| *elt >= 0) {
@@ -606,7 +609,7 @@ pub trait Itertools: Iterator {
606609
/// assert_eq!(data_grouped, vec![(true, vec![1, 3]), (false, vec![-2, -2]), (true, vec![1, 0, 1, 2])]);
607610
/// ```
608611
#[cfg(feature = "use_alloc")]
609-
fn chunk_by<K, F>(self, key: F) -> GroupBy<K, Self, F>
612+
fn chunk_by<K, F>(self, key: F) -> ChunkBy<K, Self, F>
610613
where
611614
Self: Sized,
612615
F: FnMut(&Self::Item) -> K,
@@ -618,7 +621,7 @@ pub trait Itertools: Iterator {
618621
/// See [`.chunk_by()`](Itertools::chunk_by).
619622
#[deprecated(note = "Use .chunk_by() instead", since = "0.13.0")]
620623
#[cfg(feature = "use_alloc")]
621-
fn group_by<K, F>(self, key: F) -> GroupBy<K, Self, F>
624+
fn group_by<K, F>(self, key: F) -> ChunkBy<K, Self, F>
622625
where
623626
Self: Sized,
624627
F: FnMut(&Self::Item) -> K,
@@ -633,7 +636,7 @@ pub trait Itertools: Iterator {
633636
/// determined by `size`. The last chunk will be shorter if there aren't
634637
/// enough elements.
635638
///
636-
/// `IntoChunks` is based on `GroupBy`: it is iterable (implements
639+
/// `IntoChunks` is based on `ChunkBy`: it is iterable (implements
637640
/// `IntoIterator`, **not** `Iterator`), and it only buffers if several
638641
/// chunk iterators are alive at the same time.
639642
///

0 commit comments

Comments
 (0)