wrap_json_value_create_real Subroutine

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

A wrapper for json_value_create_real so that create_real method may be called with an actual argument corresponding to the dummy argument, name that may be of ‘DEFAULT’ or ‘ISO_10646’ character kind.

Type Bound

json_core

Arguments

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

Calls

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

Source Code

    subroutine wrap_json_value_create_real(json,p,val,name)

    implicit none

    class(json_core),intent(inout)       :: json
    type(json_value),pointer             :: p
    real(RK),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_real