Home | History | Annotate | Download | only in src

Lines Matching refs:Container

264 // STL container utilities.
266 // Returns the number of elements in the given container that satisfy
268 template <class Container, typename Predicate>
269 inline int CountIf(const Container& c, Predicate predicate) {
273 // Applies a function/functor to each element in the container.
274 template <class Container, typename Functor>
275 void ForEach(const Container& c, Functor functor) {