adds the value to a given position inside the growing array.
if the requested position is outside the current array bounds, the array will be resized accordingly. if it is inside the current array bounds, the element at the requested position will be replaced.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(grw_trianglearray_type) | :: | me | ||||
type(tem_triangle_type), | intent(in) | :: | val | |||
integer, | intent(in) | :: | pos | |||
integer, | intent(in), | optional | :: | length |
optional length to expand the array |
subroutine placeat_ga_triangle(me, val, pos, length)
type(grw_trianglearray_type) :: me !< array to place the value into
type(tem_triangle_type), intent(in) :: val !< value to place at the given position
integer, intent(in) :: pos !< predefined position
!> optional length to expand the array
integer, intent(in), optional :: length
! value to append is larger than all existing ones,
! just put it to the end of the list, this captures
! also the case of empty lists.
! in this case foundpos = me%nvals + 1 holds.
if (pos > me%containersize) then
! expand the array, if its boundary is reached
call expand(me = me, pos = pos, length = length)
end if
me%nvals = max( pos, me%nvals )
me%val(pos) = val
end subroutine placeat_ga_triangle