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).

Arguments

Type IntentOptional AttributesName
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 wrap_json_value_create_real32 interface~to_unicode to_unicode proc~wrap_json_value_create_real32->interface~to_unicode proc~to_uni to_uni interface~to_unicode->proc~to_uni proc~to_uni_vec to_uni_vec interface~to_unicode->proc~to_uni_vec

Contents


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