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
Product: Tarantool Since: 2.3.1 Audience/target: developers Root document: https://www.tarantool.io/en/doc/latest/reference/reference_lua/decimal/ SME: @ Totktonada
There is now a modulo operator for decimal numbers:
a = decimal.new(172.51) a % 1 --- - '0.51' ... a % 0.3 --- - '0.01' ... a % 13.27 --- - '0.00' ... a % 173 --- - '172.51' ... a % 72 --- - '28.51' ... 720 % a --- - '29.96' ...
Requested by @sergepetrenko in tarantool/tarantool@8ea7106
The text was updated successfully, but these errors were encountered:
I would highlight that % support was declared within as result of #819. It seems, by mistake: it was added only in 2.3.1.
%
Please, proceed with this issue as it looks more apporiate for you: either just close or add some version / issue / release notes pointers.
Sorry, something went wrong.
No branches or pull requests
Product: Tarantool
Since: 2.3.1
Audience/target: developers
Root document: https://www.tarantool.io/en/doc/latest/reference/reference_lua/decimal/
SME: @ Totktonada
Details
There is now a modulo operator for decimal numbers:
Requested by @sergepetrenko in tarantool/tarantool@8ea7106
The text was updated successfully, but these errors were encountered: