Alternate version of json_file_load_from_string, where "str" is kind=CDK.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_file), | intent(inout) | :: | me | |||
character(kind=CDK,len=*), | intent(in) | :: | str |
subroutine wrap_json_file_load_from_string(me, str)
implicit none
class(json_file),intent(inout) :: me
character(kind=CDK,len=*),intent(in) :: str
call me%load_from_string(to_unicode(str))
end subroutine wrap_json_file_load_from_string