adjustr_string Function

private elemental function adjustr_string(string) result(adjusted_string)

Right-adjust the character sequence represented by the string. The length of the character sequence remains unchanged.

Arguments

Type IntentOptional Attributes Name
type(string_type), intent(in) :: string

Return Value type(string_type)


Calls

proc~~adjustr_string~~CallsGraph proc~adjustr_string adjustr_string proc~maybe maybe proc~adjustr_string->proc~maybe

Called by

proc~~adjustr_string~~CalledByGraph proc~adjustr_string adjustr_string interface~adjustr adjustr interface~adjustr->proc~adjustr_string

Source Code

elemental function adjustr_string(string) result(adjusted_string)
   type(string_type), intent(in) :: string
   type(string_type) :: adjusted_string

   adjusted_string = adjustr(maybe(string))

end function adjustr_string