wrap_json_get_real_vec_by_path Subroutine

private subroutine wrap_json_get_real_vec_by_path(json, me, path, vec, found, default)

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

Type Bound

json_core

Arguments

Type IntentOptional Attributes Name
class(json_core), intent(inout) :: json
type(json_value), pointer :: me
character(kind=CDK, len=*), intent(in) :: path
real(kind=RK), intent(out), dimension(:), allocatable :: vec
logical(kind=LK), intent(out), optional :: found
real(kind=RK), intent(in), optional, dimension(:) :: default

default value if not found


Source Code

    subroutine wrap_json_get_real_vec_by_path(json, me, path, vec, found, default)

    implicit none

    class(json_core),intent(inout)                :: json
    type(json_value),pointer                      :: me
    character(kind=CDK,len=*),intent(in)          :: path
    real(RK),dimension(:),allocatable,intent(out) :: vec
    logical(LK),intent(out),optional              :: found
    real(RK),dimension(:),intent(in),optional     :: default !! default value if not found

    call json%get(me, to_unicode(path), vec, found, default)

    end subroutine wrap_json_get_real_vec_by_path