| 4568 | */ |
| 4569 | template <typename first_type_, typename second_type_> |
| 4570 | concatenation<first_type_, second_type_> concatenate(first_type_ &&first, second_type_ &&second) noexcept(false) { |
| 4571 | return {first, second}; |
| 4572 | } |
| 4573 | |
| 4574 | /** |
| 4575 | * @brief Concatenates two or more strings into a template expression. |
no outgoing calls
searching dependent graphs…