Vyxapedia

Element - - Set Union

Characters:


Description

Merge two arrays without duplicates


Overloads

  • any-any - list(set(a).union(set(b)))

Examples

  • ⟨1|2⟩ ⟨2|3|4⟩ ∪ = ⟨1|2|3|4⟩
  • 12 234 ∪ = ⟨1|2|3|4⟩
  • 12 `12` ∪ = ⟨1|2|`1`|`2`⟩
  • `12` 12 ∪ = ⟨`1`|`2`|1|2⟩