append Interface

public interface append

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

Calls

interface~~append~9~~CallsGraph interface~append~9 append proc~append_da_vecprojection append_da_vecprojection interface~append~9->proc~append_da_vecprojection proc~append_da_projection append_da_projection interface~append~9->proc~append_da_projection interface~expand~9 expand proc~append_da_vecprojection->interface~expand~9 interface~sortedposofval~2 sortedposofval proc~append_da_projection->interface~sortedposofval~2 proc~append_da_projection->interface~expand~9 proc~sortposofval_projection sortposofval_projection interface~sortedposofval~2->proc~sortposofval_projection proc~expand_da_projection expand_da_projection interface~expand~9->proc~expand_da_projection

Called by

interface~~append~9~~CalledByGraph interface~append~9 append proc~sorttruncate_da_projection sorttruncate_da_projection proc~sorttruncate_da_projection->interface~append~9 proc~ply_fill_dynprojectarray ply_fill_dynProjectArray proc~ply_fill_dynprojectarray->interface~append~9 interface~sorttruncate~2 sorttruncate interface~sorttruncate~2->proc~sorttruncate_da_projection

Contents


Module Procedures

private subroutine append_da_projection(me, val, length, pos, wasadded)

appending a value to the dynamic array

Read more…

Arguments

TypeIntentOptionalAttributesName
type(dyn_projectionarray_type) :: me
type(ply_prj_init_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

private subroutine append_da_vecprojection(me, val, length, pos, wasadded)

appending a sorted list of values to the dynamic array

Read more…

Arguments

TypeIntentOptionalAttributesName
type(dyn_projectionarray_type) :: me
type(ply_prj_init_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