append Interface

public interface append

append a value to the dynamic array and return its position.

Calls

interface~~append~21~~CallsGraph interface~append~21 append proc~append_singlega2d_long append_singlega2d_long interface~append~21->proc~append_singlega2d_long proc~append_arrayga2d_long append_arrayga2d_long interface~append~21->proc~append_arrayga2d_long interface~expand~22 expand proc~append_singlega2d_long->interface~expand~22 proc~append_arrayga2d_long->interface~expand~22 proc~expand_ga2d_real expand_ga2d_real interface~expand~22->proc~expand_ga2d_real

Contents


Module Procedures

public subroutine append_singlega2d_long(me, val, pos1, pos2, length)

append a single value to the growing 2d array.

Arguments

Type IntentOptional Attributes Name
type(grw_long2darray_type) :: me

array to append the value to

integer(kind=long_k), intent(in) :: val

value to append

integer, intent(in) :: pos1

position in first dimension (cannot grow)

integer, intent(out), optional :: pos2

the position in second dimension the element were added to

integer, intent(in), optional :: length

optional length to expand the array

public subroutine append_arrayga2d_long(me, val, length, pos)

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

Arguments

Type IntentOptional Attributes Name
type(grw_long2darray_type) :: me

array to append the value to

integer(kind=long_k), intent(in) :: val(:)

array of values to append

integer, intent(in), optional :: length

optional length to expand the array

integer, intent(out), optional :: pos

the position in second dimension the elements were added to