This function provides a comparison of two paths.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(tem_path_type), | intent(in) | :: | left |
path to compare |
||
type(tem_path_type), | intent(in) | :: | right |
path to compare against |
is smaller??
function isSmaller(left, right) result(small) ! --------------------------------------------------------------------------- !> path to compare type(tem_path_type), intent(in) :: left !> path to compare against type(tem_path_type), intent(in) :: right !> is smaller?? logical :: small ! --------------------------------------------------------------------------- small = ( tem_pathComparison( left, right ) .lt. 0 ) end function isSmaller