On Wed, Jul 16, 2014 at 1:04 PM, Steven G. Johnson <[email protected]> wrote:
> ∪ is already defined to union in Julia.
Note that it also supports infix syntax:
julia> A = Set(1,2,3)
Set{Int64}({2,3,1})
julia> B = Set(2,4,5)
Set{Int64}({4,2,5})
julia> A ∪ B
Set{Int64}({4,2,3,5,1})
