Concatenate two character sequences. In this version both character sequences are by a string.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(string_type), | intent(in) | :: | lhs | |||
| type(string_type), | intent(in) | :: | rhs |
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