We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arithmetic NamedType does not pass std::is_arithmetic assertion. i.e.
NamedType
std::is_arithmetic
using MyInt = fluent::NamedType<int, struct _MyInt, fluent::Arithmetic>; static_assert(std::is_arithmetic<MyInt>() == true); // does not compile
This could be potentially fixed using the same pattern as fluent::Hashable, but need to consider other types of assertions for completeness sake
fluent::Hashable
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Arithmetic
NamedType
does not passstd::is_arithmetic
assertion. i.e.This could be potentially fixed using the same pattern as
fluent::Hashable
, but need to consider other types of assertions for completeness sakeThe text was updated successfully, but these errors were encountered: