append Interface

public interface append

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

Calls

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

Called by

interface~~append~5~~CalledByGraph interface~append~5 append proc~sorttruncate_da_path sorttruncate_da_path proc~sorttruncate_da_path->interface~append~5 interface~sorttruncate sorttruncate interface~sorttruncate->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

Type IntentOptional Attributes Name
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

Type IntentOptional Attributes Name
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