Tagged Questions
7
votes
6answers
3k views
Is there a Technique in C++ to know if a class has a member function of a given signature
I'm asking for a template trick to detect if a class has a specific member function of a given signature.
The problem is similar to the one cited here
http://www.gotw.ca/gotw/071.htm
but not the ...
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 )
{
...