concat_string_string Function

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

Concatenate two character sequences. In this version both character sequences are by a string.

Arguments

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

Return Value type(string_type)


Calls

proc~~concat_string_string~~CallsGraph proc~concat_string_string concat_string_string proc~maybe maybe proc~concat_string_string->proc~maybe

Called by

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

Source Code

elemental function concat_string_string(lhs, rhs) result(string)
   type(string_type), intent(in) :: lhs
   type(string_type), intent(in) :: rhs
   type(string_type) :: string

   string%raw = maybe(lhs)//maybe(rhs)

end function concat_string_string