Life is about creating yourself.
esv::class_type::fpp
Method .fpp of esv::class_type is used to get the fixed-point part of a value after floor value.
If a value is negative, its fpp is negative too.
#include <esvcpp/core.hpp> int main() { esv::fx64 a = 134.221; esv::fx64 b = a.fpp(); esv::print(b); // 0.221 }