Home | History | Annotate | Download | only in src

Lines Matching full:functor

293 // Applies a function/functor to each element in the container.
294 template <class Container, typename Functor>
295 void ForEach(const Container& c, Functor functor) {
296 std::for_each(c.begin(), c.end(), functor);
337 // functor.