mirror of
https://github.com/dlang/phobos.git
synced 2025-05-03 16:40:48 +03:00
Update changes to modify [0][0] to [0, 0]
Addressing comments to change [0][0] to [0, 0]
This commit is contained in:
parent
1ab23fa70b
commit
f21cf84d99
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ template pack(K...)
|
||||||
auto b = a.pack!(2);
|
auto b = a.pack!(2);
|
||||||
|
|
||||||
assert(b.shape == [3, 4]);
|
assert(b.shape == [3, 4]);
|
||||||
assert(b[0][0].shape == [5, 6]);
|
assert(b[0, 0].shape == [5, 6]);
|
||||||
|
|
||||||
assert(a == b);
|
assert(a == b);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue