| 387 | */ |
| 388 | template <typename D = void, typename... Types> |
| 389 | constexpr auto MakeSvArray(Types&& ... t) { |
| 390 | return MakeArray<std::string_view>(std::forward<Types>(t)...); |
| 391 | } |
| 392 | |
| 393 | /** |
| 394 | * Create a std::vector from the given parameters, automatically deducing the type. |
no outgoing calls
no test coverage detected