Open b1conrad opened 2 years ago
Intersection operation appears to be directional when dealing with unbalanced arrays. e.g.
A = ["tag1","tag2","tag3","tag4","tag5"] B = ["tag3", "tag5"] A.intersection(B) // ["tag3", "tag5] B.intersection(A) // []
as reported by Josh Goodman
Intersection operation appears to be directional when dealing with unbalanced arrays. e.g.
as reported by Josh Goodman