better_collect 0.5.0

Provides a composable, declarative way to consume an iterator
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! [`Collector`]s that deal with memory.
//!
//! This module corresponds to [`std::mem`].
//!
//! [`Collector`]: crate::collector::Collector

mod dropping;
mod forgetting;

pub use dropping::*;
pub use forgetting::*;