yesamer opened a new pull request, #2141: URL: https://github.com/apache/incubator-kie-tools/pull/2141
Closes: https://github.com/apache/incubator-kie-issues/issues/904 DMN 1.5 introduced the following functions: list replace(list, position, newItem) > Examples: ```FEEL list replace( [2, 4, 7, 8], 3, 6) = [2, 4, 6, 8] ``` list replace(list, match, newItem) > Examples: ```FEEL list replace ( [2, 4, 7, 8], function(item, newItem) item < newItem, 5) = [5, 5, 7, 8] ``` The engine already implemented it in this ticket https://github.com/apache/incubator-kie-issues/issues/507 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
