Remove a variable from a JSON file.
This is just a wrapper to remove_if_present.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_file), | intent(inout) | :: | me | |||
character(kind=CK,len=*), | intent(in) | :: | path | the path to the variable |
subroutine json_file_remove(me,path)
implicit none
class(json_file),intent(inout) :: me
character(kind=CK,len=*),intent(in) :: path !! the path to the variable
call me%core%remove_if_present(me%p,path)
end subroutine json_file_remove