Thank you Tim, that works, julia> setdiff(Set([1,2,3,4]),Set([2,3,5])) Set([4,1])
has the expected behaviour, as well as
julia> setdiff(Set{Int}([1,2,3,4]),Set{Int}([2,3,5]))
Set([4,1])
On Monday, August 1, 2016 at 6:52:57 PM UTC+1, Tim Wheeler wrote:
>
> Your Set constructor is incorrect.
> Try Set{Int}([1,2,3,4]) instead.
>
