wrap_json_file_add_double Subroutine

private subroutine wrap_json_file_add_double(me, path, val, found, was_created)

Alternate version of json_file_add_double, where "path" is kind=CDK.

Arguments

Type IntentOptional AttributesName
class(json_file), intent(inout) :: me
character(kind=CDK,len=*), intent(in) :: path

the path to the variable

real(kind=RK), intent(in) :: val

value

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


Calls

proc~~wrap_json_file_add_double~~CallsGraph proc~wrap_json_file_add_double wrap_json_file_add_double interface~to_unicode to_unicode proc~wrap_json_file_add_double->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_file_add_double(me,path,val,found,was_created)

    implicit none

    class(json_file),intent(inout)       :: me
    character(kind=CDK,len=*),intent(in) :: path         !! the path to the variable
    real(RK),intent(in)                  :: val          !! value
    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_double(to_unicode(path),val,found,was_created)

    end subroutine wrap_json_file_add_double