json_value_add_integer Subroutine

private subroutine json_value_add_integer(json, p, name, val)

Add an integer value child to the json_value variable.

Note

This routine is part of the public API that can be used to build a JSON structure using json_value pointers.

Type Bound

json_core

Arguments

Type IntentOptional Attributes Name
class(json_core), intent(inout) :: json
type(json_value), pointer :: p
character(kind=CK, len=*), intent(in) :: name
integer(kind=IK), intent(in) :: val

Calls

proc~~json_value_add_integer~~CallsGraph proc~json_value_add_integer json_value_module::json_core%json_value_add_integer none~add~2 json_value_module::json_core%add proc~json_value_add_integer->none~add~2 none~create_integer json_value_module::json_core%create_integer proc~json_value_add_integer->none~create_integer proc~json_value_add_string_name_ascii json_value_module::json_core%json_value_add_string_name_ascii none~add~2->proc~json_value_add_string_name_ascii proc~json_value_add_string_val_ascii json_value_module::json_core%json_value_add_string_val_ascii none~add~2->proc~json_value_add_string_val_ascii proc~json_value_add_string_vec_name_ascii json_value_module::json_core%json_value_add_string_vec_name_ascii none~add~2->proc~json_value_add_string_vec_name_ascii proc~json_value_add_string_vec_val_ascii json_value_module::json_core%json_value_add_string_vec_val_ascii none~add~2->proc~json_value_add_string_vec_val_ascii proc~json_value_create_integer json_value_module::json_core%json_value_create_integer none~create_integer->proc~json_value_create_integer proc~wrap_json_value_create_integer json_value_module::json_core%wrap_json_value_create_integer none~create_integer->proc~wrap_json_value_create_integer proc~json_value_add_string_name_ascii->none~add~2 interface~to_unicode json_string_utilities::to_unicode proc~json_value_add_string_name_ascii->interface~to_unicode proc~json_value_add_string_val_ascii->none~add~2 proc~json_value_add_string_val_ascii->interface~to_unicode proc~json_value_add_string_vec_name_ascii->none~add~2 proc~json_value_add_string_vec_name_ascii->interface~to_unicode proc~json_value_add_string_vec_val_ascii->none~add~2 proc~json_value_add_string_vec_val_ascii->interface~to_unicode proc~json_value_create json_value_module::json_value_create proc~json_value_create_integer->proc~json_value_create proc~to_integer json_value_module::json_core%to_integer proc~json_value_create_integer->proc~to_integer proc~wrap_json_value_create_integer->none~create_integer proc~wrap_json_value_create_integer->interface~to_unicode 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 proc~destroy_json_data json_value_module::destroy_json_data proc~to_integer->proc~destroy_json_data

Source Code

    subroutine json_value_add_integer(json, p, name, val)

    implicit none

    class(json_core),intent(inout)      :: json
    type(json_value),pointer            :: p
    character(kind=CK,len=*),intent(in) :: name
    integer(IK),intent(in)              :: val

    type(json_value),pointer :: var

    !create the variable:
    call json%create_integer(var,val,name)

    !add it:
    call json%add(p, var)

    end subroutine json_value_add_integer