Table Of Contents

Previous topic

compare

Next topic

wstring

This Page

string

Interface

template<std::size_t N>
using string = sprout::basic_string<char, N>;

Examples

#include <type_traits>
#include <sprout/string.hpp>
using namespace sprout;

using type = string<8>;
static_assert(std::is_same<type::value_type, char>::value, "element type of string is char.");