Skip to content

Commit

Permalink
Removed invalid reference to 'Compat'
Browse files Browse the repository at this point in the history
  • Loading branch information
jarlela committed Jul 30, 2019
1 parent e4177f2 commit f287868
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/indexing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function pairs(d::NDSparse, idxs::Vararg{Any,N}) where N
cs = astuple(columns(I))
data = d.data
rng = range_estimate(I, idxs)
(I[i]=>data[i] for i in Compat.Iterators.Filter(r->row_in(cs, r, idxs), rng))
(I[i]=>data[i] for i in Iterators.Filter(r->row_in(cs, r, idxs), rng))
end

# setindex!
Expand Down

0 comments on commit f287868

Please sign in to comment.