swiftest_final_storage Subroutine

public subroutine swiftest_final_storage(self)

Finalizer for the storage data type

Arguments

Type IntentOptional Attributes Name
type(swiftest_storage) :: self

Swiftest storage object


Calls

proc~~swiftest_final_storage~~CallsGraph proc~swiftest_final_storage swiftest_final_storage interface~swiftest_util_dealloc_storage swiftest_storage%swiftest_util_dealloc_storage proc~swiftest_final_storage->interface~swiftest_util_dealloc_storage

Source Code

      subroutine swiftest_final_storage(self)
         !! author: David A. Minton
         !!
         !! Finalizer for the storage data type
         implicit none
         ! Arguments
         type(swiftest_storage) :: self
            !! Swiftest storage object
         call self%dealloc()
         return
      end subroutine swiftest_final_storage