I need to check if any of the parameters passed to a function appear more than twice. Essentially, I want the following behaviour
appearance<0,1,0,1>::value // should return true
appearance<2,0,1,2,2>::value // should return false
appearance<5,5,5>::value // should return false
I know there is a question on finding the number of uniques, but it does not answer my question, since the solutions to that question return for instance
no_unique<0,1,0,1,0,1>::value // returns 2
But it does not say if the parameter appeared once, twice or three times.
How can I achieve this in C++11
?
Not really efficient but you could use the following:
You first retrieve the maximum number of occurrences of any value and then compare it to 2.
If you only have C++11 (not C++14), replace
std::max
by a customct_max
: