adjustl_string Function

private elemental function adjustl_string(string) result(adjusted_string)

Left-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~~adjustl_string~~CallsGraph proc~adjustl_string adjustl_string proc~maybe maybe proc~adjustl_string->proc~maybe

Called by

proc~~adjustl_string~~CalledByGraph proc~adjustl_string adjustl_string interface~adjustl adjustl interface~adjustl->proc~adjustl_string

Source Code

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

   adjusted_string = adjustl(maybe(string))

end function adjustl_string