wrap_json_file_remove Subroutine

private subroutine wrap_json_file_remove(me, path)

Alternate version of json_file_remove, where "path" is kind=CDK.

Arguments

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

the path to the variable


Calls

proc~~wrap_json_file_remove~~CallsGraph proc~wrap_json_file_remove wrap_json_file_remove interface~to_unicode to_unicode proc~wrap_json_file_remove->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_remove(me,path)

    implicit none

    class(json_file),intent(inout)       :: me
    character(kind=CDK,len=*),intent(in) :: path !! the path to the variable

    call me%remove(to_unicode(path))

    end subroutine wrap_json_file_remove