wrap_json_value_create_logical Subroutine

private subroutine wrap_json_value_create_logical(json, p, val, name)

Wrapper for json_value_create_logical so create_logical method can be called with name of character kind 'DEFAULT' or 'ISO_10646'

Arguments

Type IntentOptional AttributesName
class(json_core), intent(inout) :: json
type(json_value), pointer:: p
logical(kind=LK), intent(in) :: val
character(kind=CDK,len=*), intent(in) :: name

Calls

proc~~wrap_json_value_create_logical~~CallsGraph proc~wrap_json_value_create_logical wrap_json_value_create_logical interface~to_unicode to_unicode proc~wrap_json_value_create_logical->interface~to_unicode proc~to_uni_vec to_uni_vec interface~to_unicode->proc~to_uni_vec proc~to_uni to_uni interface~to_unicode->proc~to_uni

Contents


Source Code

    subroutine wrap_json_value_create_logical(json,p,val,name)

    implicit none

    class(json_core),intent(inout)       :: json
    type(json_value),pointer             :: p
    logical(LK),intent(in)               :: val
    character(kind=CDK,len=*),intent(in) :: name

    call json%create_logical(p,val,to_unicode(name))

    end subroutine wrap_json_value_create_logical