Comment on Compile-time JSON deserialization in C++parentComments−kookybakker2yHow about floats in scientific notation?−dctwinOP2yYou can do something similar, no? std::pow is not constexpr (most float stuff is not, presumably due to floating point state) but you can implement 10^x anyway
Comments
How about floats in scientific notation?
You can do something similar, no? std::pow is not constexpr (most float stuff is not, presumably due to floating point state) but you can implement 10^x anyway