set_language Subroutine

private pure elemental subroutine set_language(this, language)

Type Bound

Transcription

Arguments

Type IntentOptional Attributes Name
class(Transcription), intent(inout) :: this
character(len=*), intent(in) :: language

Called by

proc~~set_language~~CalledByGraph proc~set_language foropenai_Transcription::Transcription%set_language proc~set_transcription_data foropenai_Transcription::Transcription%set_Transcription_data proc~set_transcription_data->proc~set_language program~test_transcription test_Transcription program~test_transcription->proc~set_transcription_data

Source Code

   elemental pure subroutine set_language(this, language)
      class(Transcription), intent(inout) :: this
      character(len=*),     intent(in)    :: language
      this%language = trim(language)
   end subroutine set_language