json_value_create_array Subroutine

private subroutine json_value_create_array(json, p, name)

Allocate a json_value pointer and make it an array variable. The pointer should not already be allocated.

Example

     type(json_value),pointer :: p
     type(json_core) :: json
     call json%create_array(p,'arrayname')

Arguments

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

Calls

proc~~json_value_create_array~~CallsGraph proc~json_value_create_array json_value_create_array proc~json_value_create json_value_create proc~json_value_create_array->proc~json_value_create

Contents


Source Code

    subroutine json_value_create_array(json,p,name)

    implicit none

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

    call json_value_create(p)
    call json%to_array(p,name)

    end subroutine json_value_create_array