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.

Type Bound

json_file

Arguments

Type IntentOptional Attributes Name
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 json_file_module::json_file%wrap_json_file_rename interface~to_unicode json_string_utilities::to_unicode proc~wrap_json_file_rename->interface~to_unicode proc~json_file_rename json_file_module::json_file%json_file_rename proc~wrap_json_file_rename->proc~json_file_rename 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

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