wrap_json_file_remove Subroutine

private subroutine wrap_json_file_remove(me, path)

Alternate version of json_file_remove, where “path” is 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


Calls

proc~~wrap_json_file_remove~~CallsGraph proc~wrap_json_file_remove json_file_module::json_file%wrap_json_file_remove interface~to_unicode json_string_utilities::to_unicode proc~wrap_json_file_remove->interface~to_unicode remove remove proc~wrap_json_file_remove->remove 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

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