placeat_arrayga2d_char Subroutine

public subroutine placeat_arrayga2d_char(me, val, pos2, length)

append an array of values to the growing 2d array.

Arguments

Type IntentOptional Attributes Name
type(grw_char2darray_type) :: me

array to append the value to

character, intent(in) :: val(:)

array of values to append

integer, intent(in) :: pos2

position in second dimension (can grow)

integer, intent(in), optional :: length

optional length to expand the array


Calls

proc~~placeat_arrayga2d_char~~CallsGraph proc~placeat_arrayga2d_char placeat_arrayga2d_char interface~expand~22 expand proc~placeat_arrayga2d_char->interface~expand~22 proc~expand_ga2d_real expand_ga2d_real interface~expand~22->proc~expand_ga2d_real

Called by

proc~~placeat_arrayga2d_char~~CalledByGraph proc~placeat_arrayga2d_char placeat_arrayga2d_char interface~placeat~31 placeat interface~placeat~31->proc~placeat_arrayga2d_char

Contents


Source Code

  subroutine placeat_arrayga2d_char(me, val, pos2, length)
    ! --------------------------------------------------------------------------
    !> array to append the value to
    type(grw_char2darray_type) :: me
    !> array of values to append
    character, intent(in) :: val(:)
    !> position in second dimension (can grow)
    integer, intent(in) :: pos2
    !> optional length to expand the array
    integer, intent(in), optional :: length
    ! --------------------------------------------------------------------------
    integer :: expandlength
    ! --------------------------------------------------------------------------

    if (me%nvals == huge(me%nvals)) then
       write(*,*) "reached end of integer range for growing array!"
       write(*,*) "aborting!!"
       stop
    end if
    if (pos2 > me%containersize) then
      expandlength = pos2 - me%containersize
      if( present( length ) ) expandlength = max(expandlength, length)
      ! expand the array, if its boundary is reached
      call expand( me = me, length = expandlength )
    end if

    me%nvals = max(pos2, me%nvals)
    me%val( : , pos2 ) = val(:)

  end subroutine placeat_arrayga2d_char