arbitrary-precision
Here are 101 public repositories matching this topic...
Add sum function
How about adding a sum helper?
const numbers = [Decimal(1), Decimal(2), Decimal(3)]
Decimal.sum(numbers) // => 6
This would be sugar for:
numbers.reduce((acc, current) => acc.add(current), Decimal(0))
It would be nice to have an option to bypass adding zeros here.
What if we have dp = 1e6, and the value passed is just 0? We end up adding 1e6 zeros, which consumes a lot of time and may be pointless for most usage scenarios.
Also, I think that pushing constant value within cycle here (and in some other places in the code) is not
-
Updated
May 10, 2020 - PHP
The tar-ball on github seems to have the doc and README.rst file, but the one from pypi is missing these. (Trying to package the lastest version for opensuse and the standard is to get the tar-balls from pypi). Would be great to include these again in the next version.
Thanks
-
Updated
May 24, 2020 - Go
Returns x such that incomplete_gamma(a, x) = y. It could be implemented by searching for the only root of a monotonic function on (0, infinity).
see gammaincinv
-
Updated
Oct 16, 2018 - JavaScript
-
Updated
May 21, 2020 - Julia
-
Updated
Apr 23, 2020 - C
Example
Could you please provide a small example how to use this module? For example in a node.js environment?
-
Updated
Nov 30, 2019 - Java
Refactor readme
Let's face it, the readme could be a lot better. It should be refactored to conform to current conventions, provide a more complete overview of the library and to increase readability
-
Updated
Mar 3, 2020 - C
-
Updated
Apr 29, 2020 - C
Improve README
Describe the bug
README is not well structured
To Reproduce
Look at README file
Expected behavior
README should provide a quick overview what the library provides, way to contribute. Detailed descriptions should be moved to Wiki
-
Updated
May 26, 2020 - Julia
-
Updated
Dec 11, 2019 - PHP
To start with, it should handle 1-dimensional functions of these types:
- Polynomials (ax + b)
- Exponentials (a * b^x)
- Logarithmic (b log a)
Should be able to:
- Provide the derivative function
- Provide the integral function
-
Updated
Jun 8, 2020 - JavaScript
Seen with @arnetheduck.
for uint128, stint properly generates add + adc (see status-im/nim-stint#10)
But for uint256+, the way carry is done will loop multiple time on the low half
https://github.com/status-im/nim-stint/blob/9993b9dca4a2dbf76bc432252ad4e8db944ae831/stint/private/uint_addsub.nim#L17-L29
Important for WASM codesize optimization.
-
Updated
Mar 29, 2020 - C#
I'm currently contributing an automatic PR labeler to this package as part of my task in Google Code In.
I believe that by adding "documentation" (for detecting change in a markdown file) and "Testing" (detecting a change in the /test folder) labels, the package contributing can be made much easier.
Regards,
PseudoCodeNerd
-
Updated
Nov 14, 2018 - C
-
Updated
Jan 14, 2020 - Erlang
-
Updated
Jun 1, 2020 - Go
I don't think we can even see the documentation lines in traits.rs
, and there needs to be a note pointing to ShiftAmount
and the documentation I have placed there.
-
Updated
Mar 2, 2019 - C++
-
Updated
Apr 14, 2020 - C
Improve this page
Add a description, image, and links to the arbitrary-precision topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the arbitrary-precision topic, visit your repo's landing page and select "manage topics."
I know the version bump to 9.0.0 had no breaking changes, but for some developers the different version numbers in the doc can be confusing.
Bump it manually or automate the number with API call if only the latest documentation is shown:
https://api.npms.io/v2/package/bignumber.js
https://github.com/MikeMcl/bignumber.js/blob/986fd70e514e58e86d43bc9944547d82658e47ae/doc/API.html#L61