Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(json_value), | intent(inout), | pointer | :: | p | ||
character(kind=CDK,len=*), | intent(in) | :: | name |
Alternate version of json_value_remove_if_present, where "name" is kind=CDK.
subroutine wrap_json_value_remove_if_present(p,name)
implicit none
type(json_value),pointer :: p
character(kind=CDK,len=*),intent(in) :: name
call json_value_remove_if_present(p,to_unicode(name))
end subroutine wrap_json_value_remove_if_present