wrap_json_file_update_string Subroutine

private subroutine wrap_json_file_update_string(me, path, val, found, trim_str, adjustl_str)

Alternate version of json_file_update_string, where “path” and “val” are kind=CDK.

Type Bound

json_file

Arguments

Type IntentOptional Attributes Name
class(json_file), intent(inout) :: me
character(kind=CDK, len=*), intent(in) :: path
character(kind=CDK, len=*), intent(in) :: val
logical(kind=LK), intent(out) :: found
logical(kind=LK), intent(in), optional :: trim_str

if TRIM() should be called for the val

logical(kind=LK), intent(in), optional :: adjustl_str

if ADJUSTL() should be called for the val (note that ADJUSTL is done before TRIM)


Calls

proc~~wrap_json_file_update_string~~CallsGraph proc~wrap_json_file_update_string json_file_module::json_file%wrap_json_file_update_string interface~to_unicode json_string_utilities::to_unicode proc~wrap_json_file_update_string->interface~to_unicode none~update~4 json_file_module::json_file%update proc~wrap_json_file_update_string->none~update~4 proc~to_uni json_string_utilities::to_uni interface~to_unicode->proc~to_uni proc~to_uni_vec json_string_utilities::to_uni_vec interface~to_unicode->proc~to_uni_vec proc~json_file_update_string_name_ascii json_file_module::json_file%json_file_update_string_name_ascii none~update~4->proc~json_file_update_string_name_ascii proc~json_file_update_string_val_ascii json_file_module::json_file%json_file_update_string_val_ascii none~update~4->proc~json_file_update_string_val_ascii proc~json_file_update_string_name_ascii->interface~to_unicode proc~json_file_update_string_name_ascii->none~update~4 proc~json_file_update_string_val_ascii->interface~to_unicode proc~json_file_update_string_val_ascii->none~update~4

Source Code

    subroutine wrap_json_file_update_string(me,path,val,found,trim_str,adjustl_str)

    implicit none

    class(json_file),intent(inout)       :: me
    character(kind=CDK,len=*),intent(in) :: path
    character(kind=CDK,len=*),intent(in) :: val
    logical(LK),intent(out)              :: found
    logical(LK),intent(in),optional      :: trim_str     !! if TRIM() should be called for the `val`
    logical(LK),intent(in),optional      :: adjustl_str  !! if ADJUSTL() should be called for the `val`
                                                         !! (note that ADJUSTL is done before TRIM)

    call me%update(to_unicode(path),to_unicode(val),found,trim_str,adjustl_str)

    end subroutine wrap_json_file_update_string