wrap_json_file_rename Subroutine

private subroutine wrap_json_file_rename(me, path, name, found)

Alternate version of json_file_rename, where "path" and "name" are kind=CDK.

Arguments

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

the path to the variable

character(kind=CDK,len=*), intent(in) :: name

the new name

logical(kind=LK), intent(out), optional :: found

if the variable was found


Calls

proc~~wrap_json_file_rename~~CallsGraph proc~wrap_json_file_rename wrap_json_file_rename interface~to_unicode to_unicode proc~wrap_json_file_rename->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


Source Code

    subroutine wrap_json_file_rename(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=CDK,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),to_unicode(name),found)

    end subroutine wrap_json_file_rename