Skip to content

Commit 05916b6

Browse files
Merge pull request #461 from jpthiele/patch-1
Fully qualify constructor extension
2 parents 9e3936c + 9d38d86 commit 05916b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/ArrayInterfaceBandedMatricesExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function _bandsize(bandind, rowsize, colsize)
4646
end
4747
end
4848

49-
function BandedMatrixIndex(rowsize, colsize, lowerbandwidth, upperbandwidth, isrow)
49+
function ArrayInterface.BandedMatrixIndex(rowsize, colsize, lowerbandwidth, upperbandwidth, isrow)
5050
upperbandwidth > -lowerbandwidth || throw(ErrorException("Invalid Bandwidths"))
5151
bandinds = upperbandwidth:-1:(-lowerbandwidth)
5252
bandsizes = [_bandsize(band, rowsize, colsize) for band in bandinds]

0 commit comments

Comments
 (0)