CK
/=CDK
operator.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(kind=CK,len=*), | intent(in) | :: | ucs4_str | |||
character(kind=CDK,len=*), | intent(in) | :: | def_str |
pure elemental function ucs4_neq_default(ucs4_str,def_str) result(res)
implicit none
character(kind=CK, len=*), intent(in) :: ucs4_str
character(kind=CDK,len=*), intent(in) :: def_str
logical(LK) :: res
res = ( ucs4_str /= to_unicode(def_str) )
end function ucs4_neq_default