Wrapper for json_file_rename where "path" is kind=CDK).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_file), | intent(inout) | :: | me | |||
character(kind=CDK,len=*), | intent(in) | :: | path | the path to the variable |
||
character(kind=CK,len=*), | intent(in) | :: | name | the new name |
||
logical(kind=LK), | intent(out), | optional | :: | found | if the variable was found |
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.
subroutine json_file_rename_path_ascii(me,path,name,found)
implicit none
class(json_file),intent(inout) :: me
character(kind=CDK,len=*),intent(in) :: path !! the path to the variable
character(kind=CK,len=*),intent(in) :: name !! the new name
logical(LK),intent(out),optional :: found !! if the variable was found
call me%json_file_rename(to_unicode(path),name,found)
end subroutine json_file_rename_path_ascii