posofval_path Function

public function posofval_path(me, val, nextifnotfound, lower, upper) result(pos)

the actual position of a given value in the dynamic array

most likely this is what you need in codes, using this data structure, it first does the binary search on the sorted values with sortposofval_path and then returns the looked up position in the original unsorted array, which corresponds to the position returned by the append routine.

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 position of the next entry in the sorted list should be returned instead, if val is not found.

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

Return Value integer


Calls

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

Called by

proc~~posofval_path~~CalledByGraph proc~posofval_path posofval_path interface~positionofval~5 positionofval interface~positionofval~5->proc~posofval_path

Contents


Variables

TypeVisibilityAttributesNameInitial
integer, public :: sortpos
integer, public :: lb
integer, public :: ub