deallocate_file_name Subroutine

private pure elemental subroutine deallocate_file_name(this)

Type Bound

openai

Arguments

Type IntentOptional Attributes Name
class(openai), intent(inout) :: this

Called by

proc~~deallocate_file_name~~CalledByGraph proc~deallocate_file_name foropenai_base::openai%deallocate_file_name proc~deallocate_openai foropenai_base::openai%deallocate_openai proc~deallocate_openai->proc~deallocate_file_name program~test_base test_base program~test_base->proc~deallocate_openai

Source Code

   elemental pure subroutine deallocate_file_name(this)
      class(openai), intent(inout) :: this
      if (allocated(this%file_name)) deallocate(this%file_name)
   end subroutine deallocate_file_name