json_value_create_real32 Subroutine

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

Alternate version of json_value_create_real where val=real32.

Note

The value is converted into a real(RK) variable internally.

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=CK, len=*), intent(in) :: name

Calls

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

Called by

proc~~json_value_create_real32~~CalledByGraph proc~json_value_create_real32 json_value_module::json_core%json_value_create_real32 none~create_real~2 json_value_module::json_core%create_real proc~json_value_create_real32->none~create_real~2 none~create_real~2->proc~json_value_create_real32 proc~wrap_json_value_create_real32 json_value_module::json_core%wrap_json_value_create_real32 none~create_real~2->proc~wrap_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~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_value_create_real32->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 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=CK,len=*),intent(in) :: name

    call json%create_real(p,real(val,RK),name)

    end subroutine json_value_create_real32