Unlike `Set` or `collect`, `unique(itr)` doesn't infer types from the generator. ``` unique(x for x in 1:3) 3-element Array{Any,1}: 1 2 3 ``` It should return `Array{Int, 1}`.