| 300 | |
| 301 | template <typename OutContainer, typename InContainer, typename Function> |
| 302 | OutContainer transform(InContainer&& container, Function&& function) { |
| 303 | OutContainer res; |
| 304 | transformInto(res, std::forward<InContainer>(container), std::forward<Function>(function)); |
| 305 | return res; |
| 306 | } |
| 307 | |
| 308 | template <typename OutputContainer, typename Function, typename Container1, typename Container2> |
| 309 | OutputContainer zipWith(Function&& function, Container1 const& cont1, Container2 const& cont2) { |
nothing calls this directly
no test coverage detected