finalize_json_file Subroutine

private subroutine finalize_json_file(me)

Finalizer for json_file class.

Just a wrapper for json_file_destroy.

Arguments

Type IntentOptional AttributesName
type(json_file), intent(inout) :: me

Contents

Source Code


Source Code

    subroutine finalize_json_file(me)

    implicit none

    type(json_file),intent(inout) :: me

    call me%destroy(destroy_core=.true.)

    end subroutine finalize_json_file