Compare if two collections are equals
Compare if collection of ["One","Two","3"] has same items of collection ["Two","3","One"]
7
votes

-
KokKoon.Gan commented
If the action is to return TRUE or FALSE, i will vote for TRUE
or we can consider the action to return 1 for EXACT MATCH (content and order), 2 for content match, 0 for Not Match.The idea was based on one of my scenario where I really need to know if both collections have the same items (i.e. no order required).
Thanks,
-
AdminJoshua (Product Manager, Nintex) commented
Thanks for the feedback. In the above, the collection has the same values but in different order, What is your expectation of the evaluation, true or false?