pub trait Map: ListFn { // Provided method fn map<M: MapFn<Input = Self::Item>>( self, m: M ) -> FlatMapList<Self, MapWrap<M>> { ... } }