Go to the source code of this file.
|
template<typename... Ts> |
auto | ck_tile::concat (const Ts &... xs) -> std::enable_if_t<!AllConvertibleToStringView< Ts... >, std::string > |
|
template<std::size_t N> |
constexpr std::size_t | ck_tile::getSize (char(&)[N]) noexcept |
|
template<std::size_t N> |
constexpr std::size_t | ck_tile::getSize (const char(&)[N]) noexcept |
|
constexpr std::size_t | ck_tile::getSize (const char *s) noexcept |
|
constexpr std::size_t | ck_tile::getSize (const char &) noexcept |
|
std::size_t | ck_tile::getSize (const std::string &s) noexcept |
|
constexpr std::size_t | ck_tile::getSize (const std::string_view &s) noexcept |
|
template<typename... Ts> |
auto | ck_tile::concatInto (std::string &result, const Ts &... xs) -> std::enable_if_t< AllConvertibleToStringView< Ts... >, void > |
|
template<typename Sep , typename First , typename... Rest> |
auto | ck_tile::concat (Sep sep, const First &first, const Rest &... rest) -> std::enable_if_t< AllConvertibleToStringView< First, Rest... >, std::string > |
|