json_file_add_logical Subroutine

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

Add a logical(LK) value to a JSON file.

Type Bound

json_file

Arguments

Type IntentOptional Attributes Name
class(json_file), intent(inout) :: me
character(kind=CK, len=*), intent(in) :: path

the path to the variable

logical(kind=LK), 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


Called by

proc~~json_file_add_logical~~CalledByGraph proc~json_file_add_logical json_file_module::json_file%json_file_add_logical proc~wrap_json_file_add_logical json_file_module::json_file%wrap_json_file_add_logical proc~wrap_json_file_add_logical->proc~json_file_add_logical

Contents

Source Code


Source Code

    subroutine json_file_add_logical(me,path,val,found,was_created)

    implicit none

    class(json_file),intent(inout)       :: me
    character(kind=CK,len=*),intent(in)  :: path         !! the path to the variable
    logical(LK),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

    if (.not. associated(me%p)) call me%core%create_object(me%p,ck_'') ! create root

    call me%core%add_by_path(me%p,path,val,found,was_created)

    end subroutine json_file_add_logical