json_create_null Interface

public interface json_create_null

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

Example

     type(json_value),pointer :: p
     call json_create_null(p,'value')

Calls

interface~~json_create_null~~CallsGraph interface~json_create_null json_create_null proc~json_value_create_null json_value_create_null interface~json_create_null->proc~json_value_create_null proc~json_value_create json_value_create proc~json_value_create_null->proc~json_value_create proc~to_null to_null proc~json_value_create_null->proc~to_null proc~destroy_json_data destroy_json_data proc~to_null->proc~destroy_json_data
Help

Called By

interface~~json_create_null~~CalledByGraph interface~json_create_null json_create_null proc~test_10 test_10 proc~test_10->interface~json_create_null program~jf_test_10 jf_test_10 program~jf_test_10->proc~test_10
Help

Module Procedures

private subroutine json_value_create_null(me, name)

Arguments

Type IntentOptional AttributesName
type(json_value), , pointer:: me
character(kind=CK,len=*), intent(in) :: name

Description

Author
Jacob Williams

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