concat.hpp File Reference

concat.hpp File Reference#

Composable Kernel: concat.hpp File Reference
concat.hpp File Reference

Go to the source code of this file.

Classes

struct  ck_tile::IsCharArray< T >
struct  ck_tile::IsCharArray< char[N]>
struct  ck_tile::IsCharArray< const char[N]>
struct  ck_tile::IsCharArray< char(&)[N]>
struct  ck_tile::IsCharArray< const char(&)[N]>

Namespaces

namespace  ck_tile

Functions

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... Ts>
auto ck_tile::concat (const Ts &... xs) -> std::enable_if_t< AllConvertibleToStringView< Ts... >, std::string >
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 >
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 >

Variables

template<typename... Ts>
constexpr bool ck_tile::AllConvertibleToStringView