pub trait PipeExt { // Provided method fn pipe<F, R>(self, f: F) -> R where F: FnOnce(Self) -> R, Self: Sized { ... } }
Functional composition helpers
Apply a function to self (functional pipe operator)