vpiotr / decimal_for_cpp

Decimal data type for C++
273 stars 68 forks source link

Performance Optimizations using std::move and constexpr #66

Closed evanwporter closed 3 months ago

evanwporter commented 3 months ago

Small little performance optimizations

evanwporter commented 3 months ago

Note that this may conflict with #54 (without a small adjustment to #54), but seeing as that has yet to be merged...

evanwporter commented 3 months ago

FYI: Copying becomes more computationally costly as the string gets longer.

vpiotr commented 3 months ago

Looks OK, thanks!