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
Interpreter doesn't support Trig Table Functions today
Power-Fx/src/tests/Microsoft.PowerFx.Interpreter.Tests/InterpreterExpressionTestCases/Disabled.txt
Line 3 in ac5f76c
For 1-argument scalars, we could enable these via an IR transform: Cos([1,2,3]) // Table overload
Cos([1,2,3])
Could be rewritten in IR as: ForAll([1,2,3], Cos(Value)) // ForAll around scalar overload
ForAll([1,2,3], Cos(Value))
This can be immediately applied to enabling in interpreter: https://github.com/microsoft/Power-Fx/blob/main/src/tests/Microsoft.PowerFx.Core.Tests/ExpressionTestCases/TrigTableFunctions.txt
Other table overloads are more complex and can be dealt with later.
Cos(table)
ForAll(table, Cos(Value))
Round(table, arg1)
Round(table0, table1)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Interpreter doesn't support Trig Table Functions today
Power-Fx/src/tests/Microsoft.PowerFx.Interpreter.Tests/InterpreterExpressionTestCases/Disabled.txt
Line 3 in ac5f76c
For 1-argument scalars, we could enable these via an IR transform:
Cos([1,2,3])
// Table overloadCould be rewritten in IR as:
ForAll([1,2,3], Cos(Value))
// ForAll around scalar overloadThis can be immediately applied to enabling in interpreter:
https://github.com/microsoft/Power-Fx/blob/main/src/tests/Microsoft.PowerFx.Core.Tests/ExpressionTestCases/TrigTableFunctions.txt
Other table overloads are more complex and can be dealt with later.
Cos(table)
ForAll(table, Cos(Value))
Round(table, arg1)
Round(table0, table1)
The text was updated successfully, but these errors were encountered: