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.

Type Bound

json_file

Arguments

Type IntentOptional Attributes Name
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 json_file_module::json_file%wrap_assign_string_to_json_file interface~to_unicode json_string_utilities::to_unicode proc~wrap_assign_string_to_json_file->interface~to_unicode proc~assign_string_to_json_file json_file_module::json_file%assign_string_to_json_file proc~wrap_assign_string_to_json_file->proc~assign_string_to_json_file proc~to_uni json_string_utilities::to_uni interface~to_unicode->proc~to_uni proc~to_uni_vec json_string_utilities::to_uni_vec interface~to_unicode->proc~to_uni_vec deserialize deserialize proc~assign_string_to_json_file->deserialize destroy destroy proc~assign_string_to_json_file->destroy

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