[julia-users] Re: Index into an array with an IntSet

2015-06-15 Thread colintbowers
Ah, I understand. Thanks for responding and pointing me to the appropriate pull request. So currently if we want to index with an IntSet, the best thing to do is probably just convert the IntSet to a Vector{Int} using something like: [ i for i in myIntSet ] yes? Cheers, Colin On Monday,

[julia-users] Re: Index into an array with an IntSet

2015-06-15 Thread David Gold
`collect(myIntSet)` should also do it, I believe. On Monday, June 15, 2015 at 8:20:15 PM UTC-4, colint...@gmail.com wrote: Ah, I understand. Thanks for responding and pointing me to the appropriate pull request. So currently if we want to index with an IntSet, the best thing to do is

Re: [julia-users] Re: Index into an array with an IntSet

2015-06-15 Thread Colin Bowers
Cool, works for me. Many thanks. On 16 June 2015 at 10:27, David Gold david.gol...@gmail.com wrote: `collect(myIntSet)` should also do it, I believe. On Monday, June 15, 2015 at 8:20:15 PM UTC-4, colint...@gmail.com wrote: Ah, I understand. Thanks for responding and pointing me to the