Tagged Questions

1
vote
4answers
1k views

C++ “smart” predicate for stl algorithm

I need to designe predicate for stl algorithms such as find_if, count_if. namespace lib { struct Finder { Finder( const std::string& name ): name_( name ) { ...