json_create_string Interface

public interface json_create_string

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

Example

     type(json_value),pointer :: p
     call json_create_string(p,'value','foobar')

Calls

interface~~json_create_string~~CallsGraph interface~json_create_string json_create_string proc~json_value_create_string json_value_create_string interface~json_create_string->proc~json_value_create_string proc~json_value_create json_value_create proc~json_value_create_string->proc~json_value_create proc~to_string to_string proc~json_value_create_string->proc~to_string proc~destroy_json_data destroy_json_data proc~to_string->proc~destroy_json_data
Help

Called By

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

Module Procedures

private subroutine json_value_create_string(me, val, name)

Arguments

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

Description

Author
Jacob Williams

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