append Interface

public interface append

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

Calls

interface~~append~23~~CallsGraph interface~append~23 append proc~append_da_path append_da_path interface~append~23->proc~append_da_path proc~append_da_vecpath append_da_vecpath interface~append~23->proc~append_da_vecpath interface~expand~20 expand proc~append_da_path->interface~expand~20 interface~sortedposofval~5 sortedposofval proc~append_da_path->interface~sortedposofval~5 proc~append_da_vecpath->interface~expand~20 proc~expand_da_path expand_da_path interface~expand~20->proc~expand_da_path proc~sortposofval_path sortposofval_path interface~sortedposofval~5->proc~sortposofval_path

Called by

interface~~append~23~~CalledByGraph interface~append~23 append proc~sorttruncate_da_path sorttruncate_da_path proc~sorttruncate_da_path->interface~append~23 interface~sorttruncate~5 sorttruncate interface~sorttruncate~5->proc~sorttruncate_da_path

Contents


Module Procedures

public subroutine append_da_path(me, val, length, pos, wasadded)

appending a value to the dynamic array

Read more…

Arguments

TypeIntentOptionalAttributesName
type(dyn_patharray_type) :: me
type(tem_path_type), intent(in) :: val
integer, intent(in), optional :: length

optional length to expand the array

integer, intent(out), optional :: pos

position in the array, if the value is found

logical, intent(out), optional :: wasadded

flag to indicate, if val was newly added

public subroutine append_da_vecpath(me, val, length, pos, wasadded)

appending a sorted list of values to the dynamic array

Read more…

Arguments

TypeIntentOptionalAttributesName
type(dyn_patharray_type) :: me
type(tem_path_type), intent(in) :: val(:)
integer, intent(in), optional :: length

optional length to expand the array

integer, intent(out), optional :: pos(:)

position in the array, the values are found at.

logical, intent(out), optional :: wasadded(:)

flag to indicate, if val was newly added