Section A.6.2,
Syntax 8-2
Assignments to dynamic arrays
In A.6.2 and Syntax 8-2, in blocking_assignment, REPLACE
| hierarchical_dynamic_array_variable_identifier [ ] = dynamic_array_new
WITH
| hierarchical_dynamic_array_variable_identifier = dynamic_array_new
and in 4.6.1, REPLACE
Optional.
The name of an array with which to initialize the new array.
If src_array it is
not specified, the elements of array_name the newly allocated array are initialized to their
default value. src_array This array identifier must be a dynamic array of the
same data type as array_name
the array on the left-hand side, but it need
not have the same size. If the size of src_array dynamic_array_variable_identifier is less than
size the value of the expression,
the extra elements of array_name shall
be initialized to their default value. If the size of src_array dynamic_array_variable_identifier is
greater than size the value of the
expression, the additional elements of src_array shall
be ignored.
WITH
Optional. The name of anAn array
with which to initialize the new array. If src_array it is not
specified, the elements of array_name the newly allocated array are initialized to their
default value. src_array This array must be a dynamic array of the same data
type as array_name the array on the left-hand side, but it need not have
the same size. If the size of src_array this array is less
than size the size of the new
array, the extra elements of array_name shall be initialized
to their default value. If the size of src_array this array is greater than size the size of the new array,
the additional elements of src_array shall
be ignored.