set_userArguments Subroutine

private pure elemental subroutine set_userArguments(this, userArguments)

Type Bound

options

Arguments

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

Contents

Source Code


Source Code

   elemental pure subroutine set_userArguments(this, userArguments)
      class(options), intent(inout) :: this
      character(len=*), intent(in)  :: userArguments

      this%userArguments = trim(userArguments)
   end subroutine set_userArguments