CK
//CDK
operator.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(kind=CK,len=*), | intent(in) | :: | ucs4_str | |||
character(kind=CDK,len=*), | intent(in) | :: | def_str |
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
pure function ucs4_join_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
character(kind=CK,len=(len(ucs4_str)+len(def_str))) :: res
res = ucs4_str//to_unicode(def_str)
end function ucs4_join_default