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
It should be possible to perform basic arithmetic with native transformations:
numeric-to-increment
numeric-to-add(incr)
numeric-to-add(incr, times)
numeric-to-multiply(factor)
numeric-to-invert
dateTime-to-add(ts)
dateTime-to-add(ts, times)
The text was updated successfully, but these errors were encountered:
Beta available at 1.21.0-beta0336 or at https://ci.appveyor.com/project/Seddryck/nbi/builds/27259640/artifacts
1.21.0-beta0336
Sorry, something went wrong.
Add doucmentation for #350 and #515 including a bit of reorganization
14efe69
No branches or pull requests
It should be possible to perform basic arithmetic with native transformations:
numeric-to-increment
: add 1 to the current valuenumeric-to-add(incr)
: add incr to the current valuenumeric-to-add(incr, times)
: add incr to the current value several times. If times is zero, return current value.numeric-to-multiply(factor)
: multiply the current value by factornumeric-to-invert
: invert the current value (equivalent to 1/current value)dateTime-to-add(ts)
: add ts (a timeSpan) to the current valuedateTime-to-add(ts, times)
: add ts (a timeSpan) to the current value several times. If times is zero, return current value.The text was updated successfully, but these errors were encountered: