Tagged Questions

4
votes
2answers
96 views

SFINAE doesn't detect T::reference

The std::vector<T> class is a model of the STL Container concept, and as such any proper implementation of vector has to include a nested typedef value_type as well as reference. This should be ...
4
votes
3answers
280 views

SFINAE compiler troubles

The following code of mine should detect whether T has begin and end methods: template <typename T> struct is_container { template <typename U, typename U::const_iterator (U::*)() const, ...
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 ) { ...