是否有 C++ STL 函数可以将值与编译时常量进行比较?
Is there a C++ STL function to compare a value against a compile-time constant?
我在实用程序库中实现了以下功能:
template <auto Value>
bool equals_constant(const decltype(Value)& value) { return Value == value; }
它对其他采用可调用谓词的模板函数非常有用,例如:
template <auto IsValid>
struct Validator {
bool validate(int value) { return IsValid(value); }
};
// this validator requires its value to equal 42 (just for demo purposes)
Validator<equals_constant<42>> validator;
std::cout << validator.validate(41) << std::endl; // 0
std::cout << validator.validate(42) << std::endl; // 1
我重新发明了轮子 - 像我的equals_constant()
一样的东西已经在 STL 中了吗? (如果是这样,我在 cppreference 或 Google 上找不到它。)谢谢。
没有。 std
不是放置“任何模糊有用的东西”的地方。
boost::hana::equal.to
看起来很像。
我在实用程序库中实现了以下功能:
template <auto Value>
bool equals_constant(const decltype(Value)& value) { return Value == value; }
它对其他采用可调用谓词的模板函数非常有用,例如:
template <auto IsValid>
struct Validator {
bool validate(int value) { return IsValid(value); }
};
// this validator requires its value to equal 42 (just for demo purposes)
Validator<equals_constant<42>> validator;
std::cout << validator.validate(41) << std::endl; // 0
std::cout << validator.validate(42) << std::endl; // 1
我重新发明了轮子 - 像我的equals_constant()
一样的东西已经在 STL 中了吗? (如果是这样,我在 cppreference 或 Google 上找不到它。)谢谢。
没有。 std
不是放置“任何模糊有用的东西”的地方。
boost::hana::equal.to
看起来很像。