tostring_description Function

public function tostring_description(this) result(s)

Type Bound

ScenarioDescription

Arguments

Type IntentOptional Attributes Name
class(ScenarioDescription), intent(in) :: this

Return Value character(len=:), allocatable


Source Code

   function tostring_description(this) result(s)
      character(:), allocatable :: s
      class(ScenarioDescription), intent(in) :: this

      s = this%name
   end function tostring_description