append Interface

public interface append

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

Calls

interface~~append~7~~CallsGraph interface~append~7 append proc~append_da_int append_da_int interface~append~7->proc~append_da_int proc~append_da_vecint append_da_vecint interface~append~7->proc~append_da_vecint interface~sortedposofval~5 sortedposofval proc~append_da_int->interface~sortedposofval~5 interface~expand~9 expand proc~append_da_int->interface~expand~9 proc~append_da_vecint->interface~expand~9 proc~sortposofval_label sortposofval_label interface~sortedposofval~5->proc~sortposofval_label proc~expand_da_label expand_da_label interface~expand~9->proc~expand_da_label

Contents


Module Procedures

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

appending a value to the dynamic array

Read more…

Arguments

Type IntentOptional Attributes Name
type(dyn_intarray_type) :: me
integer, 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_vecint(me, val, length, pos, wasadded)

appending a sorted list of values to the dynamic array

Read more…

Arguments

Type IntentOptional Attributes Name
type(dyn_intarray_type) :: me
integer, 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