json_get_logical_vec_by_path Subroutine

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

Get a logical vector from a json_value, given the path.

Arguments

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

Calls

proc~~json_get_logical_vec_by_path~~CallsGraph proc~json_get_logical_vec_by_path json_get_logical_vec_by_path proc~flag_not_found flag_not_found proc~json_get_logical_vec_by_path->proc~flag_not_found

Contents


Source Code

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

    implicit none

    class(json_core),intent(inout)                   :: json
    type(json_value),pointer,intent(in)              :: me
    character(kind=CK,len=*),intent(in)              :: path
    logical(LK),dimension(:),allocatable,intent(out) :: vec
    logical(LK),intent(out),optional                 :: found
    logical(LK),dimension(:),intent(in),optional     :: default

    character(kind=CK,len=*),parameter :: routine = CK_'json_get_logical_vec_by_path'

#include "json_get_vec_by_path.inc"

    end subroutine json_get_logical_vec_by_path