Concatenate two character sequences. In this version the left-hand side character sequences is by a string.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(string_type), | intent(in) | :: | lhs | |||
| character(len=*), | intent(in) | :: | rhs |
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