concat_string_char Function

private elemental function concat_string_char(lhs, rhs) result(string)

Concatenate two character sequences. In this version the left-hand side character sequences is by a string.

Arguments

Type IntentOptional Attributes Name
type(string_type), intent(in) :: lhs
character(len=*), intent(in) :: rhs

Return Value type(string_type)


Calls

proc~~concat_string_char~~CallsGraph proc~concat_string_char concat_string_char proc~maybe maybe proc~concat_string_char->proc~maybe

Called by

proc~~concat_string_char~~CalledByGraph proc~concat_string_char concat_string_char interface~operator(SLASHSLASH) operator(//) interface~operator(SLASHSLASH)->proc~concat_string_char

Source Code

elemental function concat_string_char(lhs, rhs) result(string)
   type(string_type), intent(in) :: lhs
   character(len=*), intent(in) :: rhs
   type(string_type) :: string

   string%raw = maybe(lhs)//rhs

end function concat_string_char