wrap_json_update_integer Subroutine

private subroutine wrap_json_update_integer(json, p, path, val, found)

Alternate version of json_update_integer, where path is kind=CDK.

Arguments

Type IntentOptional AttributesName
class(json_core), intent(inout) :: json
type(json_value), pointer:: p
character(kind=CDK,len=*), intent(in) :: path

path to the variable in the structure

integer(kind=IK), intent(in) :: val

the new value

logical(kind=LK), intent(out) :: found

if the variable was found and was a scalar.


Calls

proc~~wrap_json_update_integer~~CallsGraph proc~wrap_json_update_integer wrap_json_update_integer interface~to_unicode to_unicode proc~wrap_json_update_integer->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

    subroutine wrap_json_update_integer(json,p,path,val,found)

    implicit none

    class(json_core),intent(inout)       :: json
    type(json_value),pointer             :: p
    character(kind=CDK,len=*),intent(in) :: path  !! path to the variable in the structure
    integer(IK),intent(in)               :: val   !! the new value
    logical(LK),intent(out)              :: found !! if the variable was found and was a scalar.

    call json%update(p,to_unicode(path),val,found)

    end subroutine wrap_json_update_integer