wrap_assign_string_to_json_file Subroutine

private subroutine wrap_assign_string_to_json_file(me, str)

Alternate version of assign_string_to_json_file, where “str” is kind=CDK.

Arguments

Type IntentOptional AttributesName
class(json_file), intent(inout) :: me
character(kind=CDK,len=*), intent(in) :: str

Calls

proc~~wrap_assign_string_to_json_file~~CallsGraph proc~wrap_assign_string_to_json_file wrap_assign_string_to_json_file interface~to_unicode to_unicode proc~wrap_assign_string_to_json_file->interface~to_unicode proc~to_uni_vec to_uni_vec interface~to_unicode->proc~to_uni_vec proc~to_uni to_uni interface~to_unicode->proc~to_uni

Contents


Source Code

    subroutine wrap_assign_string_to_json_file(me,str)

    implicit none

    class(json_file),intent(inout) :: me
    character(kind=CDK,len=*),intent(in) :: str

    call me%assign_string_to_json_file(to_unicode(str))

    end subroutine wrap_assign_string_to_json_file