This function provides the test for equality of two treeIDs.
Two treeIDs are equal if their integer is equal
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 equal??
function isEqual(left, right) result(equality) ! --------------------------------------------------------------------------- !> path to compare type(tem_path_type), intent(in) :: left !> path to compare against type(tem_path_type), intent(in) :: right !> is equal?? logical :: equality ! --------------------------------------------------------------------------- equality = ( tem_pathComparison( left, right ) .eq. 0 ) end function isEqual