File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 266
266
setunstoredindex! (A, v, I... )
267
267
end
268
268
end
269
- @interface :: AbstractSparseArrayInterface function Base. setindex! (A:: AbstractArray , I:: Int )
269
+ @interface :: AbstractSparseArrayInterface function Base. setindex! (
270
+ A:: AbstractArray , v, I:: Int
271
+ )
270
272
@_propagate_inbounds_meta
271
273
@boundscheck checkbounds (A, I)
272
274
return @inbounds if isstored (A, I)
276
278
end
277
279
end
278
280
# disambiguate vectors
279
- @interface :: AbstractSparseArrayInterface function Base. setindex! (A:: AbstractVector , I:: Int )
281
+ @interface :: AbstractSparseArrayInterface function Base. setindex! (
282
+ A:: AbstractVector , v, I:: Int
283
+ )
280
284
@_propagate_inbounds_meta
281
285
@boundscheck checkbounds (A, I)
282
286
return @inbounds if isstored (A, I)
You can’t perform that action at this time.
0 commit comments