I have a class like this:
template <typename... Types>
class Evaluator
{
public:
template <typename... Types>
Evaluator(Types... args)
{
list = std::make_tuple(args...);
}
template <typename T>
bool Evaluate(const T& input)
{
// based on a specific input type T, here I want to call
// Evaluate(input) for a specific element in the tuple. i.e. the
// element that has method Evaluate, for which Evaluate(input) compiles
return std::get<0>(list).Evaluate(input);
}
private:
std::tuple<Types...> list;
};
Update The function could return false for instances that don't have proper "Evaluate(input) -> bool" function and is evaluated for all matching with bool result ||
First of all, we need a metafunction which can tell us whether the expression
declval<T>().Evaluate(input)
makes sense for a given typeT
.We can use SFINAE and decltype in order to do so:
Now we can write a single class
MultiEvaluateFromTuple
.Usage:
This will call
Evaluate
for all the typesT
inTypes
for whichCanEvaluate<InputType>::eval<T>::value == true
, and return the || of the results.