This function provides the test for unequality of two path.
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 unequal??
function isUnequal(left, right) result(unequality) ! --------------------------------------------------------------------------- !> path to compare type(tem_path_type), intent(in) :: left !> path to compare against type(tem_path_type), intent(in) :: right !> is unequal?? logical :: unequality ! --------------------------------------------------------------------------- unequality = ( tem_pathComparison( left, right ) .ne. 0 ) end function isUnequal