wrap_json_value_create_real32 Subroutine

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

Alternate version of json_value_create_real32 where “name” is kind(CDK).

Type Bound

json_core

Arguments

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

Calls

proc~~wrap_json_value_create_real32~~CallsGraph proc~wrap_json_value_create_real32 json_value_module::json_core%wrap_json_value_create_real32 interface~to_unicode json_string_utilities::to_unicode proc~wrap_json_value_create_real32->interface~to_unicode none~create_real~2 json_value_module::json_core%create_real proc~wrap_json_value_create_real32->none~create_real~2 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 none~create_real~2->proc~wrap_json_value_create_real32 proc~json_value_create_real32 json_value_module::json_core%json_value_create_real32 none~create_real~2->proc~json_value_create_real32 proc~json_value_create_real32->none~create_real~2

Called by

proc~~wrap_json_value_create_real32~~CalledByGraph proc~wrap_json_value_create_real32 json_value_module::json_core%wrap_json_value_create_real32 none~create_real~2 json_value_module::json_core%create_real proc~wrap_json_value_create_real32->none~create_real~2 none~create_real~2->proc~wrap_json_value_create_real32 proc~json_value_create_real32 json_value_module::json_core%json_value_create_real32 none~create_real~2->proc~json_value_create_real32 proc~json_add_real_by_path json_value_module::json_core%json_add_real_by_path proc~json_add_real_by_path->none~create_real~2 proc~json_value_add_real json_value_module::json_core%json_value_add_real proc~json_value_add_real->none~create_real~2 proc~json_value_create_real32->none~create_real~2 proc~wrap_json_value_create_real json_value_module::json_core%wrap_json_value_create_real proc~wrap_json_value_create_real->none~create_real~2 proc~wrap_json_add_real_by_path json_value_module::json_core%wrap_json_add_real_by_path proc~wrap_json_add_real_by_path->proc~json_add_real_by_path

Source Code

    subroutine wrap_json_value_create_real32(json,p,val,name)

    implicit none

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

    call json%create_real(p,val,to_unicode(name))

    end subroutine wrap_json_value_create_real32