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
Port this change from botbuilder-dotnet/master branch: microsoft/botbuilder-dotnet#3345
closes: #3343
Now max/ min functions can also take a list of numeric values as a parameter. For example: max(createArray(1, 2, 3)) min(createArray(1, 2, 3))
Also they can take a mixing of numeric lists and numeric values. max(createArray(1, 2, 3), 5) min(createArray(1, 2, 3), 5)
The text was updated successfully, but these errors were encountered:
Needs port
Sorry, something went wrong.
luhan2017
Successfully merging a pull request may close this issue.
closes: #3343
Now max/ min functions can also take a list of numeric values as a parameter.
For example:
max(createArray(1, 2, 3))
min(createArray(1, 2, 3))
Also they can take a mixing of numeric lists and numeric values.
max(createArray(1, 2, 3), 5)
min(createArray(1, 2, 3), 5)
Changed projects
The text was updated successfully, but these errors were encountered: