Difference between revisions of "Row"
From Mesham
Jump to navigationJump to searchm |
|||
Line 9: | Line 9: | ||
== Example == | == Example == | ||
− | var a:array[Int,10,20] :: allocated[col[] :: multiple[]]; | + | function void main() { |
− | + | var a:array[Int,10,20] :: allocated[col[] :: multiple[]]; | |
− | + | a[1][2]:=23; | |
+ | (a :: row)[1][2]:=23; | ||
+ | }; | ||
Where the array is column major allocation, but the programmer has overridden this (just for the assignment) in line 3. If one array of allocation copies to another array of different allocation then transposition will be performed automatically in order to preserve indexes. | Where the array is column major allocation, but the programmer has overridden this (just for the assignment) in line 3. If one array of allocation copies to another array of different allocation then transposition will be performed automatically in order to preserve indexes. |
Revision as of 14:26, 15 April 2013
Syntax
row[ ]
Semantics
In combination with the array, the programmer can specify whether allocation is row or column major. This allocation information is provided in the allocation type. In row major allocation the first dimension is the most major and the last most minor.
Example
function void main() { var a:array[Int,10,20] :: allocated[col[] :: multiple[]]; a[1][2]:=23; (a :: row)[1][2]:=23; };
Where the array is column major allocation, but the programmer has overridden this (just for the assignment) in line 3. If one array of allocation copies to another array of different allocation then transposition will be performed automatically in order to preserve indexes.
Since: Version 0.41b