json_get_next Subroutine

public subroutine json_get_next(me, p)

Arguments

Type IntentOptional AttributesName
type(json_value), intent(in), pointer:: me

JSON object

type(json_value), intent(out), pointer:: p

pointer to next

Description

Returns a pointer to the next of a json_value. If there is no next, then a null() pointer is returned.

Called By

proc~~json_get_next~~CalledByGraph proc~json_get_next json_get_next proc~test_2 test_2 proc~test_2->proc~json_get_next program~jf_test_2 jf_test_2 program~jf_test_2->proc~test_2
Help

Source Code

    subroutine json_get_next(me,p)

    implicit none

    type(json_value),pointer,intent(in)  :: me   !! JSON object
    type(json_value),pointer,intent(out) :: p    !! pointer to next

    p => me%next

    end subroutine json_get_next