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