Changeset e0330d2c for tests/array-collections
- Timestamp:
- Dec 18, 2024, 6:37:11 PM (10 months ago)
- Branches:
- master
- Children:
- e0f3bd2
- Parents:
- faf9e19
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/array-collections/array-basic.cfa
rfaf9e19 re0330d2c 12 12 // numeric subscripts 13 13 ptrdiff_t ix = 1, iy = 2, iz = 3; 14 array( float, Ny, Nz ) & yz = xyz[ix]; 15 array( float, Nz ) & z = xyz[ix][iy]; 16 float & val = xyz[ix][iy][iz]; 14 array( float, Ny, Nz ) & yz = xyz[ix]; (void) yz; 15 array( float, Nz ) & z = xyz[ix][iy]; (void) z; 16 float & val = xyz[ix][iy][iz]; (void) val; 17 17 18 18 // deferral subscript
Note:
See TracChangeset
for help on using the changeset viewer.