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 266266 setunstoredindex! (A, v, I... )
267267 end
268268end
269- @interface :: AbstractSparseArrayInterface function Base. setindex! (A:: AbstractArray , I:: Int )
269+ @interface :: AbstractSparseArrayInterface function Base. setindex! (
270+ A:: AbstractArray , v, I:: Int
271+ )
270272 @_propagate_inbounds_meta
271273 @boundscheck checkbounds (A, I)
272274 return @inbounds if isstored (A, I)
276278 end
277279end
278280# 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+ )
280284 @_propagate_inbounds_meta
281285 @boundscheck checkbounds (A, I)
282286 return @inbounds if isstored (A, I)
You can’t perform that action at this time.
0 commit comments