operator(//) Interface

public interface operator(//)

Provide a means to convert to UCS4 while concatenating UCS4 and default strings


Module Procedures

private pure function ucs4_join_default(ucs4_str, def_str) result(res)

Author
Izaak Beekman

CK//CDK operator.

Arguments

Type IntentOptional Attributes Name
character(kind=CK, len=*), intent(in) :: ucs4_str
character(kind=CDK, len=*), intent(in) :: def_str

Return Value character(kind=CK, len=len=(len(ucs4_str)+len(def_str)))

private pure function default_join_ucs4(def_str, ucs4_str) result(res)

Author
Izaak Beekman

CDK//CK operator.

Arguments

Type IntentOptional Attributes Name
character(kind=CDK, len=*), intent(in) :: def_str
character(kind=CK, len=*), intent(in) :: ucs4_str

Return Value character(kind=CK, len=len=(len(def_str)+len(ucs4_str)))