Alternate version of json_file_add_logical_vec, where "path" is kind=CDK.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_file), | intent(inout) | :: | me | |||
character(kind=CDK,len=*), | intent(in) | :: | path | the path to the variable |
||
logical(kind=LK), | intent(in), | dimension(:) | :: | vec | the value vector |
|
logical(kind=LK), | intent(out), | optional | :: | found | if the variable was found |
|
logical(kind=LK), | intent(out), | optional | :: | was_created | if the variable had to be created |
subroutine wrap_json_file_add_logical_vec(me,path,vec,found,was_created)
implicit none
class(json_file),intent(inout) :: me
character(kind=CDK,len=*),intent(in) :: path !! the path to the variable
logical(LK),dimension(:),intent(in) :: vec !! the value vector
logical(LK),intent(out),optional :: found !! if the variable was found
logical(LK),intent(out),optional :: was_created !! if the variable had to be created
call me%json_file_add_logical_vec(to_unicode(path),vec,found,was_created)
end subroutine wrap_json_file_add_logical_vec