I been trying to use the correct way for years now, it seems there is not enough documentation online. I know you can use fn!isnull but is there other functions similar to it? All I want to do is to compare to a simple item. If array contains 3, then remove it. Is there a way to identify a single item like fv!item?
a!localVariables( local!array:{1,2,3,4}, reject(fv!item=3, local!array))
wish it will return {1,2,4}
Discussion posts and replies are publicly visible
Hi Sergio,
a!localVariables( local!array:{1,2,3,4}, reject(exact(_,3), local!array))
above code will return a result as you expect (1,2,4)