// // EuropaTools // // (C) 2021-2022 modeco80 // // SPDX-License-Identifier: GPL-3.0-or-later // #ifndef EUROPA_UTIL_FIXEDSTRING_H #define EUROPA_UTIL_FIXEDSTRING_H #include namespace europa::util { /** * A compile-time string. Usable as a C++20 cNTTP. */ template struct FixedString { char buf[N + 1] {}; constexpr FixedString(const char* s) { // NOLINT for(unsigned i = 0; i != N; ++i) buf[i] = s[i]; } constexpr operator const char*() const { // NOLINT return buf; } [[nodiscard]] constexpr std::size_t Length() const { return N; } }; template FixedString(char const (&)[N]) -> FixedString; } // namespace europa::util #endif // EUROPA_UTIL_FIXEDSTRING_H