Lines Matching full:functor
284 // Applies a function/functor to each element in the container.285 template <class Container, typename Functor>286 void ForEach(const Container& c, Functor functor) {287 std::for_each(c.begin(), c.end(), functor);328 // functor.