better_collect 0.5.0-deprecated

Provides a composable, declarative way to consume an iterator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
//! [`Collector`]s for collections in the standard library
//!
//! This module corresponds to [`std::collections`].

pub mod binary_heap;
pub mod btree_map;
pub mod btree_set;
#[cfg(feature = "std")]
// So that doc.rs doesn't put both "std" and "alloc" in feature flag.
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
pub mod hash_map;
#[cfg(feature = "std")]
// So that doc.rs doesn't put both "std" and "alloc" in feature flag.
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
pub mod hash_set;
pub mod linked_list;
pub mod vec_deque;

use std::ops::ControlFlow;

use crate::collector::{Collector, CollectorBase, IntoCollectorBase};

#[cfg(feature = "std")]
use std::{
    cmp::Eq,
    collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet, LinkedList, VecDeque},
    hash::{BuildHasher, Hash},
};

#[cfg(not(feature = "std"))]
// Hashtables are not in `alloc`.
use alloc::collections::{BTreeMap, BTreeSet, BinaryHeap, LinkedList, VecDeque};

#[cfg(feature = "alloc")]
use std::cmp::Ord;

macro_rules! collector_impl {
    (
        $feature:literal, $mod:ident::$coll_name:ident<$($generic:ident),*>, $item_ty:ty,
        $item_pat:pat_param, $push_method_name:ident($($item_args:expr),*)
        $(, $gen_bound:ident: $bound:path)* $(,)?
    ) => {
        #[cfg(feature = $feature)]
        // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        impl<$($generic),*> IntoCollectorBase for $coll_name<$($generic),*>
        where
            $($gen_bound: $bound,)*
        {
            type Output = Self;
            type IntoCollector = $mod::IntoCollector<$($generic),*>;

            #[inline]
            fn into_collector(self) -> Self::IntoCollector {
                $mod::IntoCollector(self)
            }
        }

        #[cfg(feature = $feature)]
        // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        impl<'a, $($generic),*> IntoCollectorBase for &'a mut $coll_name<$($generic),*>
        where
            $($gen_bound: $bound,)*
        {
            type Output = Self;
            type IntoCollector = $mod::CollectorMut<'a, $($generic),*>;

            #[inline]
            fn into_collector(self) -> Self::IntoCollector {
                $mod::CollectorMut(self)
            }
        }

        #[cfg(feature = $feature)]
        // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        impl<$($generic),*> CollectorBase for $mod::IntoCollector<$($generic),*> {
            type Output = $coll_name<$($generic),*>;

            #[inline]
            fn finish(self) -> Self::Output {
                self.0
            }
        }

        #[cfg(feature = $feature)]
        // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        impl<$($generic),*> Collector<$item_ty> for $mod::IntoCollector<$($generic),*>
        where
            $($gen_bound: $bound,)*
        {
            #[inline]
            fn collect(&mut self, $item_pat: $item_ty) -> ControlFlow<()> {
                // It returns a `bool`, so we will return a `ControlFlow` based on it, right?
                // No. `false` is just a signal that "it cannot collect the item at the moment,"
                // not "it cannot collect items from now on."
                self.0.$push_method_name($($item_args),*);
                ControlFlow::Continue(())
            }

            #[inline]
            fn collect_many(&mut self, items: impl IntoIterator<Item = $item_ty>) -> ControlFlow<()> {
                self.0.extend(items);
                ControlFlow::Continue(())
            }

            #[inline]
            fn collect_then_finish(mut self, items: impl IntoIterator<Item = $item_ty>) -> Self::Output {
                self.0.extend(items);
                self.0
            }
        }

        // #[cfg(feature = $feature)]
        // // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        // #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        // impl<'i, $($generic),*> Collector<&'i $item_ty> for $mod::IntoCollector<$($generic),*>
        // where
        //     $($gen_bound: $bound,)*
        //     $($copy_bound_left: $copy_bound_right),*
        // {
        //     #[inline]
        //     fn collect(&mut self, &$item_pat: &$item_ty) -> ControlFlow<()> {
        //         // It returns a `bool`, so we will return a `ControlFlow` based on it, right?
        //         // No. `false` is just a signal that "it cannot collect the item at the moment,"
        //         // not "it cannot collect items from now on."
        //         self.0.$push_method_name($($item_args),*);
        //         ControlFlow::Continue(())
        //     }

        //     #[inline]
        //     fn collect_many(&mut self, items: impl IntoIterator<Item = &'i $item_ty>) -> ControlFlow<()> {
        //         self.0.extend(items.into_iter().map(|&item| item));
        //         ControlFlow::Continue(())
        //     }

        //     #[inline]
        //     fn collect_then_finish(mut self, items: impl IntoIterator<Item = &'i $item_ty>) -> Self::Output {
        //         self.0.extend(items.into_iter().map(|&item| item));
        //         self.0
        //     }
        // }

        // #[cfg(feature = $feature)]
        // // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        // #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        // impl<'i, $($generic),*> Collector<&'i mut $item_ty> for $mod::IntoCollector<$($generic),*>
        // where
        //     $($gen_bound: $bound,)*
        //     $($copy_bound_left: $copy_bound_right),*
        // {
        //     #[inline]
        //     fn collect(&mut self, &mut $item_pat: &mut $item_ty) -> ControlFlow<()> {
        //         // It returns a `bool`, so we will return a `ControlFlow` based on it, right?
        //         // No. `false` is just a signal that "it cannot collect the item at the moment,"
        //         // not "it cannot collect items from now on."
        //         self.0.$push_method_name($($item_args),*);
        //         ControlFlow::Continue(())
        //     }

        //     #[inline]
        //     fn collect_many(&mut self, items: impl IntoIterator<Item = &'i mut $item_ty>) -> ControlFlow<()> {
        //         self.0.extend(items.into_iter().map(|&mut item| item));
        //         ControlFlow::Continue(())
        //     }

        //     #[inline]
        //     fn collect_then_finish(mut self, items: impl IntoIterator<Item = &'i mut $item_ty>) -> Self::Output {
        //         self.0.extend(items.into_iter().map(|&mut item| item));
        //         self.0
        //     }
        // }

        #[cfg(feature = $feature)]
        // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        impl<'a, $($generic),*> CollectorBase for $mod::CollectorMut<'a, $($generic),*> {
            type Output = &'a mut $coll_name<$($generic),*>;

            #[inline]
            fn finish(self) -> Self::Output {
                self.0
            }
        }

        #[cfg(feature = $feature)]
        // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        impl<'a, $($generic),*> Collector<$item_ty> for $mod::CollectorMut<'a, $($generic),*>
        where
            $($gen_bound: $bound,)*
        {
            #[inline]
            fn collect(&mut self, $item_pat: $item_ty) -> ControlFlow<()> {
                // It returns a `bool`, so we will return a `ControlFlow` based on it, right?
                // No. `false` is just a signal that "it cannot collect the item at the moment,"
                // not "it cannot collect items from now on."
                self.0.$push_method_name($($item_args),*);
                ControlFlow::Continue(())
            }

            #[inline]
            fn collect_many(&mut self, items: impl IntoIterator<Item = $item_ty>) -> ControlFlow<()> {
                self.0.extend(items);
                ControlFlow::Continue(())
            }

            #[inline]
            fn collect_then_finish(self, items: impl IntoIterator<Item = $item_ty>) -> Self::Output {
                self.0.extend(items);
                self.0
            }
        }

        // #[cfg(feature = $feature)]
        // // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        // #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        // impl<'a, 'i, $($generic),*> Collector<&'i $item_ty> for $mod::CollectorMut<'a, $($generic),*>
        // where
        //     $($gen_bound: $bound,)*
        //     $($copy_bound_left: $copy_bound_right),*
        // {
        //     #[inline]
        //     fn collect(&mut self, &$item_pat: &$item_ty) -> ControlFlow<()> {
        //         // It returns a `bool`, so we will return a `ControlFlow` based on it, right?
        //         // No. `false` is just a signal that "it cannot collect the item at the moment,"
        //         // not "it cannot collect items from now on."
        //         self.0.$push_method_name($($item_args),*);
        //         ControlFlow::Continue(())
        //     }

        //     #[inline]
        //     fn collect_many(&mut self, items: impl IntoIterator<Item = &'i $item_ty>) -> ControlFlow<()> {
        //         self.0.extend(items.into_iter().map(|&item| item));
        //         ControlFlow::Continue(())
        //     }

        //     #[inline]
        //     fn collect_then_finish(self, items: impl IntoIterator<Item = &'i $item_ty>) -> Self::Output {
        //         self.0.extend(items.into_iter().map(|&item| item));
        //         self.0
        //     }
        // }

        // #[cfg(feature = $feature)]
        // // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        // #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        // impl<'a, 'i, $($generic),*> Collector<&'i mut $item_ty> for $mod::CollectorMut<'a, $($generic),*>
        // where
        //     $($gen_bound: $bound,)*
        //     $($copy_bound_left: $copy_bound_right),*
        // {
        //     #[inline]
        //     fn collect(&mut self, &mut $item_pat: &mut $item_ty) -> ControlFlow<()> {
        //         // It returns a `bool`, so we will return a `ControlFlow` based on it, right?
        //         // No. `false` is just a signal that "it cannot collect the item at the moment,"
        //         // not "it cannot collect items from now on."
        //         self.0.$push_method_name($($item_args),*);
        //         ControlFlow::Continue(())
        //     }

        //     #[inline]
        //     fn collect_many(&mut self, items: impl IntoIterator<Item = &'i mut $item_ty>) -> ControlFlow<()> {
        //         self.0.extend(items.into_iter().map(|&mut item| item));
        //         ControlFlow::Continue(())
        //     }

        //     #[inline]
        //     fn collect_then_finish(self, items: impl IntoIterator<Item = &'i mut $item_ty>) -> Self::Output {
        //         self.0.extend(items.into_iter().map(|&mut item| item));
        //         self.0
        //     }
        // }

        #[cfg(feature = $feature)]
        // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        impl<$($generic),*> Default for $mod::IntoCollector<$($generic),*>
        where
            $($gen_bound: $bound,)*
            // Needed because of HashMap and HashSet (they also require S: Default).
            $coll_name<$($generic),*>: Default,
        {
            fn default() -> Self {
                // This is to make sure that we can't construct a default value
                // without it being usable right away as a Collector
                // (e.g. BTreeSet<T> missing T: Ord).
                $coll_name::default().into_collector()
            }
        }
    };
}

macro_rules! copy_collector_impl {
    (
        $feature:literal, $mod:ident::$coll_name:ident<$($lt:lifetime),*; $($generic:ident),* $(,)*>, $item_ty:ty,
        $item_pat:pat_param, $push_method_name:ident($($item_args:expr),*)
        $(, $gen_bound:ident: $bound:path)*,
        |$items_param:ident| $transform_items:expr;
    ) => {
        #[cfg(feature = $feature)]
        // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        impl<$($lt,)* $($generic,)*> Collector<$item_ty> for $mod::IntoCollector<$($generic),*>
        where
            $($gen_bound: $bound,)*
        {
            #[inline]
            fn collect(&mut self, $item_pat: $item_ty) -> ControlFlow<()> {
                // It returns a `bool`, so we will return a `ControlFlow` based on it, right?
                // No. `false` is just a signal that "it cannot collect the item at the moment,"
                // not "it cannot collect items from now on."
                self.0.$push_method_name($($item_args),*);
                ControlFlow::Continue(())
            }

            #[inline]
            fn collect_many(&mut self, $items_param: impl IntoIterator<Item = $item_ty>) -> ControlFlow<()> {
                self.0.extend($transform_items);
                ControlFlow::Continue(())
            }

            #[inline]
            fn collect_then_finish(mut self, $items_param: impl IntoIterator<Item = $item_ty>) -> Self::Output {
                self.0.extend($transform_items);
                self.0
            }
        }

        #[cfg(feature = $feature)]
        // So that doc.rs doesn't put both "std" and "alloc" in feature flag.
        #[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
        impl<'a, $($lt,)* $($generic,)*> Collector<$item_ty> for $mod::CollectorMut<'a, $($generic),*>
        where
            $($gen_bound: $bound,)*
        {
            #[inline]
            fn collect(&mut self, $item_pat: $item_ty) -> ControlFlow<()> {
                // It returns a `bool`, so we will return a `ControlFlow` based on it, right?
                // No. `false` is just a signal that "it cannot collect the item at the moment,"
                // not "it cannot collect items from now on."
                self.0.$push_method_name($($item_args),*);
                ControlFlow::Continue(())
            }

            #[inline]
            fn collect_many(&mut self, $items_param: impl IntoIterator<Item = $item_ty>) -> ControlFlow<()> {
                self.0.extend($transform_items);
                ControlFlow::Continue(())
            }

            #[inline]
            fn collect_then_finish(self, $items_param: impl IntoIterator<Item = $item_ty>) -> Self::Output {
                self.0.extend($transform_items);
                self.0
            }
        }
    };
}

collector_impl!(
    "std", hash_map::HashMap<K, V, S>, (K, V),
    (key, value), insert(key, value),
    K: Hash, K: Eq, S: BuildHasher,
);
copy_collector_impl!(
    "std", hash_map::HashMap<'k ,'v; K, V, S>, (&'k K, &'v V),
    (&key, &value), insert(key, value),
    K: Hash, K: Eq, K: Copy, V: Copy, S: BuildHasher,
    |items| items.into_iter().map(|(&k, &v)| (k, v));
);
copy_collector_impl!(
    "std", hash_map::HashMap<'k ,'v; K, V, S>, (&'k mut K, &'v mut V),
    (&mut key, &mut value), insert(key, value),
    K: Hash, K: Eq, K: Copy, V: Copy, S: BuildHasher,
    |items| items.into_iter().map(|(&mut k, &mut v)| (k, v));
);

collector_impl!(
    "std", hash_set::HashSet<T, S>, T,
    item, insert(item),
    T: Hash, T: Eq, S: BuildHasher,
);
copy_collector_impl!(
    "std", hash_set::HashSet<'i; T, S>, &'i T,
    &item, insert(item),
    T: Hash, T: Eq, T: Copy, S: BuildHasher,
    |items| items;
);
copy_collector_impl!(
    "std", hash_set::HashSet<'i; T, S>, &'i mut T,
    &mut item, insert(item),
    T: Hash, T: Eq, T: Copy, S: BuildHasher,
    |items| items.into_iter().map(|&mut item| item);
);

collector_impl!(
    "alloc", btree_map::BTreeMap<K, V>, (K, V),
    (key, value), insert(key, value),
    K: Ord,
);
copy_collector_impl!(
    "alloc", btree_map::BTreeMap<'k, 'v; K, V>, (&'k K, &'v V),
    (&key, &value), insert(key, value),
    K: Ord, K: Copy, V: Copy,
    |items| items.into_iter().map(|(&k, &v)| (k, v));
);
copy_collector_impl!(
    "alloc", btree_map::BTreeMap<'k, 'v; K, V>, (&'k mut K, &'v mut V),
    (&mut key, &mut value), insert(key, value),
    K: Ord, K: Copy, V: Copy,
    |items| items.into_iter().map(|(&mut k, &mut v)| (k, v));
);

collector_impl!(
    "alloc", btree_set::BTreeSet<T>, T,
    item, insert(item),
    T: Ord,
);
copy_collector_impl!(
    "alloc", btree_set::BTreeSet<'i; T>, &'i T,
    &item, insert(item),
    T: Ord, T: Copy,
    |items| items;
);
copy_collector_impl!(
    "alloc", btree_set::BTreeSet<'i; T>, &'i mut T,
    &mut item, insert(item),
    T: Ord, T: Copy,
    |items| items.into_iter().map(|&mut item| item);
);

collector_impl!(
    "alloc", binary_heap::BinaryHeap<T>, T,
    item, push(item),
    T: Ord,
);
copy_collector_impl!(
    "alloc", binary_heap::BinaryHeap<'i; T>, &'i T,
    &item, push(item),
    T: Ord, T: Copy,
    |items| items;
);
copy_collector_impl!(
    "alloc", binary_heap::BinaryHeap<'i; T>, &'i mut T,
    &mut item, push(item),
    T: Ord, T: Copy,
    |items| items.into_iter().map(|&mut item| item);
);

#[rustfmt::skip]
collector_impl!(
    "alloc", linked_list::LinkedList<T>, T,
    item, push_back(item),
);
copy_collector_impl!(
    "alloc", linked_list::LinkedList<'i; T>, &'i T,
    &item, push_back(item),
    T: Copy,
    |items| items;
);
copy_collector_impl!(
    "alloc", linked_list::LinkedList<'i; T>, &'i mut T,
    &mut item, push_back(item),
    T: Copy,
    |items| items.into_iter().map(|&mut item| item);
);

#[rustfmt::skip]
collector_impl!(
    "alloc", vec_deque::VecDeque<T>, T,
    item, push_back(item),
);
copy_collector_impl!(
    "alloc", vec_deque::VecDeque<'i; T>, &'i T,
    &item, push_back(item),
    T: Copy,
    |items| items;
);
copy_collector_impl!(
    "alloc", vec_deque::VecDeque<'i; T>, &'i mut T,
    &mut item, push_back(item),
    T: Copy,
    |items| items.into_iter().map(|&mut item| item);
);