This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <type_traits> | |
| #include <array> | |
| #include <iostream> | |
| template<typename first, typename... rest> | |
| constexpr auto all_same_v = std::conjunction_v<std::is_same<first, rest>...>; | |
| template <typename... Ts> | |
| constexpr auto concat_strings(Ts&&... args) { |