-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
Proposal for @decimal macro #57
Comments
This implementation is very rough, but it works well enough to explain my concept. |
What is the motivation? Why is this: @decimal 100 * 1.1567 better than this: Decimal(100) * 1.1567 ? |
I think ... |
I think this is a very rare use case to justify adding a macro to the library. Operations promote, so when computing, e.g., Unless the demand for this feature grows (this issue has been here for almost a year and attracted no users), I don't think we should add this. |
Would the following macros be useful?
The text was updated successfully, but these errors were encountered: