pub trait Tap<const ARITY: usize, AState, RState> {
// Provided method
fn tap<'a, R, F, Args>(self, f: F) -> F::Curry<'a>
where F: ImplCurry<ARITY, Args, AState, RState, TapMark, Self, R>,
Self: Sized { ... }
}Expand description
Extension trait for running side effects without altering the pipeline value.