Function: CONTAINS_EXACTLY
Syntax: CONTAINS_EXACTLY(list, term|term_list)
Description: Returns true if the list contains ALL and ONLY the provided values (order-insensitive equality).
Sample usage:
CONTAINS_EXACTLY(label_names, "bug")returns true iflabel_namesonly contains thebuglabel.CONTAINS_EXACTLY(label_names, ["bug", "enhancement"])returnstrueiflabel_namescontains onlybugandenhancement.CONTAINS_EXACTLY(assignee_usernames, ["john", "jenny"])returnstrueif the list of assignees only containsjohnandjenny, otherwise it returnsfalse.CONTAINS_EXACTLY(["enhancement", "bug"], ["bug"])returnsfalsebecause the first array is not exactly the same as the second one.CONTAINS_EXACTLY(["enhancement", "bug"], ["bug", "enhancement"])returnstruebecause the comparison is order-insensitive.
