sortedposofval Interface

public interface sortedposofval

return the position of a given value in the list 'sorted'. this is mainly for internal usage. the sorted list is only a pointer list to the actual values thus, in order to get the index of a given value, you need to look up the entry in the sorted list. this is done by the positionofval routine

Calls

interface~~sortedposofval~5~~CallsGraph interface~sortedposofval~5 sortedposofval proc~sortposofval_path sortposofval_path interface~sortedposofval~5->proc~sortposofval_path

Called by

interface~~sortedposofval~5~~CalledByGraph interface~sortedposofval~5 sortedposofval proc~append_da_path append_da_path proc~append_da_path->interface~sortedposofval~5 proc~posofval_path posofval_path proc~posofval_path->interface~sortedposofval~5 interface~append~23 append interface~append~23->proc~append_da_path interface~positionofval~5 positionofval interface~positionofval~5->proc~posofval_path 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 function sortposofval_path(me, val, nextifnotfound, lower, upper) result(pos)

return the sorted position of a value in the given dynamic array

Read more…

Arguments

TypeIntentOptionalAttributesName
type(dyn_patharray_type), intent(in) :: me
type(tem_path_type), intent(in) :: val
logical, intent(in), optional :: nextifnotfound

flag to indicate, if the next entry in the list should be returned, if the searched one is not found.

integer, intent(in), optional :: lower
integer, intent(in), optional :: upper

Return Value integer