placeat_ga_sphere Subroutine

private subroutine placeat_ga_sphere(me, val, pos, length)

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.

Arguments

Type IntentOptional Attributes Name
type(grw_spherearray_type) :: me
type(tem_sphere_type), intent(in) :: val
integer, intent(in) :: pos
integer, intent(in), optional :: length

optional length to expand the array


Calls

proc~~placeat_ga_sphere~~CallsGraph proc~placeat_ga_sphere placeat_ga_sphere interface~expand~26 expand proc~placeat_ga_sphere->interface~expand~26 proc~expand_ga_sphere expand_ga_sphere interface~expand~26->proc~expand_ga_sphere

Called by

proc~~placeat_ga_sphere~~CalledByGraph proc~placeat_ga_sphere placeat_ga_sphere interface~placeat~16 placeat interface~placeat~16->proc~placeat_ga_sphere

Contents

Source Code


Source Code

  subroutine placeat_ga_sphere(me, val, pos, length)
    type(grw_spherearray_type) :: me !< array to place the value into
    type(tem_sphere_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_sphere