json_get_integer_by_path Subroutine

private subroutine json_get_integer_by_path(json, me, path, value, found, default)

Get an integer value from a json_value, given the path string.

Arguments

Type IntentOptional AttributesName
class(json_core), intent(inout) :: json
type(json_value), intent(in), pointer:: me
character(kind=CK,len=*), intent(in) :: path
integer(kind=IK), intent(out) :: value
logical(kind=LK), intent(out), optional :: found
integer(kind=IK), intent(in), optional :: default

default value if not found


Calls

proc~~json_get_integer_by_path~~CallsGraph proc~json_get_integer_by_path json_get_integer_by_path proc~flag_not_found flag_not_found proc~json_get_integer_by_path->proc~flag_not_found

Contents


Source Code

    subroutine json_get_integer_by_path(json, me, path, value, found, default)

    implicit none

    class(json_core),intent(inout)      :: json
    type(json_value),pointer,intent(in) :: me
    character(kind=CK,len=*),intent(in) :: path
    integer(IK),intent(out)             :: value
    logical(LK),intent(out),optional    :: found
    integer(IK),intent(in),optional     :: default !! default value if not found

    integer(IK),parameter :: default_if_not_specified = 0_IK
    character(kind=CK,len=*),parameter :: routine = CK_'json_get_integer_by_path'

#include "json_get_scalar_by_path.inc"

    end subroutine json_get_integer_by_path