json_get_tail Subroutine

public subroutine json_get_tail(me, p)

Arguments

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

JSON object

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

pointer to tail

Description

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

Called By

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

Source Code

    subroutine json_get_tail(me,p)

    implicit none

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

    p => me%tail

    end subroutine json_get_tail