json_file_get_real32 Subroutine

private subroutine json_file_get_real32(me, path, val, found, default)

Alternate version of json_file_get_real where val is real32.

Arguments

Type IntentOptional AttributesName
class(json_file), intent(inout) :: me
character(kind=CK,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

real(kind=real32), intent(in), optional :: default

Contents

Source Code


Source Code

    subroutine json_file_get_real32 (me, path, val, found, default)

    implicit none

    class(json_file),intent(inout)      :: me
    character(kind=CK,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
    real(real32),intent(in),optional    :: default

    call me%core%get(me%p, path, val, found, default)

    end subroutine json_file_get_real32