json_update_string_name_ascii Subroutine

private subroutine json_update_string_name_ascii(json, p, path, val, found, trim_str, adjustl_str)

Alternate version of json_update_string, where path is kind=CDK.

Type Bound

json_core

Arguments

Type IntentOptional Attributes Name
class(json_core), intent(inout) :: json
type(json_value), pointer :: p
character(kind=CDK, len=*), intent(in) :: path

path to the variable in the structure

character(kind=CK, len=*), intent(in) :: val

the new value

logical(kind=LK), intent(out) :: found

if the variable was found and was a scalar.

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

if TRIM() should be called for the val (only used if val is present)

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

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


Calls

proc~~json_update_string_name_ascii~~CallsGraph proc~json_update_string_name_ascii json_value_module::json_core%json_update_string_name_ascii interface~to_unicode json_string_utilities::to_unicode proc~json_update_string_name_ascii->interface~to_unicode none~update~2 json_value_module::json_core%update proc~json_update_string_name_ascii->none~update~2 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 none~update~2->proc~json_update_string_name_ascii proc~json_update_string_val_ascii json_value_module::json_core%json_update_string_val_ascii none~update~2->proc~json_update_string_val_ascii proc~json_update_string_val_ascii->interface~to_unicode proc~json_update_string_val_ascii->none~update~2

Called by

proc~~json_update_string_name_ascii~~CalledByGraph proc~json_update_string_name_ascii json_value_module::json_core%json_update_string_name_ascii none~update~2 json_value_module::json_core%update proc~json_update_string_name_ascii->none~update~2 none~update~2->proc~json_update_string_name_ascii proc~json_update_string_val_ascii json_value_module::json_core%json_update_string_val_ascii none~update~2->proc~json_update_string_val_ascii proc~json_file_update_integer json_file_module::json_file%json_file_update_integer proc~json_file_update_integer->none~update~2 proc~json_file_update_logical json_file_module::json_file%json_file_update_logical proc~json_file_update_logical->none~update~2 proc~json_file_update_real json_file_module::json_file%json_file_update_real proc~json_file_update_real->none~update~2 proc~json_file_update_string json_file_module::json_file%json_file_update_string proc~json_file_update_string->none~update~2 proc~json_update_real32 json_value_module::json_core%json_update_real32 proc~json_update_real32->none~update~2 proc~json_update_string_val_ascii->none~update~2 proc~wrap_json_update_integer json_value_module::json_core%wrap_json_update_integer proc~wrap_json_update_integer->none~update~2 proc~wrap_json_update_logical json_value_module::json_core%wrap_json_update_logical proc~wrap_json_update_logical->none~update~2 proc~wrap_json_update_real json_value_module::json_core%wrap_json_update_real proc~wrap_json_update_real->none~update~2 proc~wrap_json_update_real32 json_value_module::json_core%wrap_json_update_real32 proc~wrap_json_update_real32->none~update~2 proc~wrap_json_update_string json_value_module::json_core%wrap_json_update_string proc~wrap_json_update_string->none~update~2

Source Code

    subroutine json_update_string_name_ascii(json,p,path,val,found,trim_str,adjustl_str)

    implicit none

    class(json_core),intent(inout)       :: json
    type(json_value),pointer             :: p
    character(kind=CDK,len=*),intent(in) :: path  !! path to the variable in the structure
    character(kind=CK, len=*),intent(in) :: val   !! the new value
    logical(LK),intent(out)              :: found !! if the variable was found and was a scalar.
    logical(LK),intent(in),optional     :: trim_str       !! if TRIM() should be called for the `val`
                                                          !! (only used if `val` is present)
    logical(LK),intent(in),optional     :: adjustl_str    !! if ADJUSTL() should be called for the `val`
                                                          !! (only used if `val` is present)
                                                          !! (note that ADJUSTL is done before TRIM)

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

    end subroutine json_update_string_name_ascii