moneycpp
moneycpp copied to clipboard
A C++ library for handling monetary values
It would be good to be able to use `money` objects arithmetically unimpeded using math libraries such as [`xtensor`](https://github.com/xtensor-stack/xtensor) or [`DataFrame`](https://github.com/hosseinmoein/DataFrame). To provide a concrete example of something that's not...
gcc's libstdc++ includes std::decimal64, a compact 64-bit, exact decimal representation for money values. It would be nice if moneycpp were expanded to allow for std::decimal32, std::decimal64, and std::decimal128 as the...
Thanks for this library. Could you kindly specify explicitly the minimum c++ version, (meaning your c++17 requirement): ```cmake set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) # Enforce the minimum C++ standard ```