wrap_json_file_get_real32 Subroutine

private subroutine wrap_json_file_get_real32(me, path, val, found)

Alternate version of json_file_get_real32, where “path” is kind=CDK.

Arguments

Type IntentOptional AttributesName
class(json_file), intent(inout) :: me
character(kind=CDK,len=*), intent(in) :: path

the path to the variable

real(kind=real32), intent(out) :: val

value

logical(kind=LK), intent(out), optional :: found

if it was really found


Calls

proc~~wrap_json_file_get_real32~~CallsGraph proc~wrap_json_file_get_real32 wrap_json_file_get_real32 interface~to_unicode to_unicode proc~wrap_json_file_get_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_file_get_real32 (me, path, val, found)

    implicit none

    class(json_file),intent(inout)       :: me
    character(kind=CDK,len=*),intent(in) :: path  !! the path to the variable
    real(real32),intent(out)             :: val   !! value
    logical(LK),intent(out),optional     :: found !! if it was really found

    call me%get(to_unicode(path), val, found)

    end subroutine wrap_json_file_get_real32