swiftest_final_storage Subroutine

public subroutine swiftest_final_storage(self)

Finalizer for the storage data type

Arguments

TypeIntentOptionalAttributesName
type(swiftest_storage) :: self

Swiftest storage object


Contents


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