pub trait FlatMap: ListFn { // Provided method fn flat_map<F: FlatMapFn<Input = Self::Item>>( self, flat_map: F ) -> FlatMapList<Self, F> { ... } }