John McFarlane
John McFarlane
Should fix at same time as #850
Add financial examples and mention finance in README.
Not yet but there are two pages of examples in [my C++ committee slides](https://johnmcfarlane.github.io/reveal.js/2019-cologne/index.html) about 2/3 of the way through. Here are revised examples of the CE links: * [€0.80...
A similar example can now be found in the test suite and in the FAQ [here](https://johnmcfarlane.github.io/cnl/index.html#division).
Hi @nelsontodd in case you're still wondering, a new financial example -- similar to [the one above](https://github.com/johnmcfarlane/cnl/issues/389#issuecomment-517574741) -- was added to the documentation [here](https://johnmcfarlane.github.io/cnl/index.html#division).
Addressed by #853
Thanks for the feedback. You've identified two issues so I'm going to break the second out into #522. (You're welcome to submit multiple issues where there are different things going...
Can you confirm that this doesn't affect optimised builds? Also, if you are using a Debug configuration, have you tried `-Og`? CNL -- like many C++ libraries that rely heavily...
Rather than casting the result of quotient, consider specifying the desired type as the template parameter. Alternatively, consider using `fraction` in the constructor as demonstrated in [this example](https://godbolt.org/z/Z78GfE) from #524....
No, that's definitely not desired behavior. Thanks for pointing it out. On Tue, 26 Nov 2019 at 17:47, Elco Jacobs wrote: > I am casting the result, because specifying the...