We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cff7bbf + 4bf8196 commit 61acd35Copy full SHA for 61acd35
test/basic.jl
@@ -72,11 +72,11 @@ C[1, 1] += 1
72
StaticArrayInterface.setindex!(A, [2 1 4 5; 2 2 3 6], .., 1)
73
StaticArrayInterface.setindex!(A, [3 2 6 5; 3 2 6 6], .., 2)
74
75
- @test StaticArrayInterface.getindex(A, :, :, 1) == [2 1 4 5; 2 2 3 6]
76
- @test StaticArrayInterface.getindex(A, :, :, 2) == [3 2 6 5; 3 2 6 6]
+ @test StaticArrayInterface.getindex(A,:,:,1) == [2 1 4 5; 2 2 3 6]
+ @test StaticArrayInterface.getindex(A,:,:,2) == [3 2 6 5; 3 2 6 6]
77
78
- @test StaticArrayInterface.getindex(A, :, .., 1) == [2 1 4 5; 2 2 3 6]
79
- @test StaticArrayInterface.getindex(A, :, .., 2) == [3 2 6 5; 3 2 6 6]
+ @test StaticArrayInterface.getindex(A,:,..,1) == [2 1 4 5; 2 2 3 6]
+ @test StaticArrayInterface.getindex(A,:,..,2) == [3 2 6 5; 3 2 6 6]
80
81
StaticArrayInterface.setindex!(A, reshape([3 4; 5 6; 4 5; 6 7], 1, 4, 2), 1, ..)
82
0 commit comments