#include <string>
#include <string_view>
Go to the source code of this file.
Classes | |
struct | FixedString< N > |
Functions | |
template<std::size_t N> | |
FixedString (const char(&str)[N]) -> FixedString< N > | |
template<std::size_t N> | |
FixedString (const FixedString< N > &str) -> FixedString< N > | |
FixedString () -> FixedString< 0 > | |
template<class T > | |
FixedString (T str) -> FixedString< T::Length > | |
FixedString | ( | ) | -> FixedString< 0 > |
FixedString | ( | const char(&) | str[N] | ) | -> FixedString< N > |
FixedString | ( | const FixedString< N > & | str | ) | -> FixedString< N > |
FixedString | ( | T | str | ) | -> FixedString< T::Length > |