lambda_destroy Subroutine

public subroutine lambda_destroy(self)

Arguments

Type IntentOptional Attributes Name
type(lambda_obj) :: self

Source Code

      subroutine lambda_destroy(self)
         implicit none
         type(lambda_obj) :: self
         if (associated(self%lambdaptr)) nullify(self%lambdaptr)
      end subroutine lambda_destroy