We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I'm working on a CLI RPN calculator using this awesome library, but I'm hitting a roadblock.
In dc, when we do something like: 2 1234567 ^ p, we (expectedly) get a very large number. However, when I try do to the same using decimal:
dc
2 1234567 ^ p
ctx = decimal.ContextUnlimited z = decimal.WithContext(decimal.ContextUnlimited) ctx.Pow(z, bigUint(2), bigUint(1234567)) fmt.Printf("%s\n", z)
I get NaN13, and nothing else.
NaN13
Is is possible to use this library for very large numbers?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I'm working on a CLI RPN calculator using this awesome library, but I'm hitting a roadblock.
In
dc
, when we do something like:2 1234567 ^ p
, we (expectedly) get a very large number. However, when I try do to the same using decimal:I get
NaN13
, and nothing else.Is is possible to use this library for very large numbers?
The text was updated successfully, but these errors were encountered: