better_collect 0.4.1

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
//! Re-exports commonly used items from this crate.
//!
//! This module is intended to be imported with a wildcard, providing
//! convenient access to the most frequently used traits and types.
//!
//! # Example
//!
//! ```
//! use better_collect::prelude::*;
//! ```

pub use crate::{
    collector::{Collector, CollectorBase, CollectorByMut, CollectorByRef, IntoCollectorBase},
    iter::IteratorExt,
    ops::{Adding, Muling},
    slice::Concat,
};