Table Of Contents

Previous topic

char_traits

Next topic

lt

This Page

assign

Interface

static void assign(char_type& c1, char_type const& c2);

Effects

Equivalent to std::char_traits<Char>::assign(c1, c2).

Examples

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

char x = 'H';
SPROUT_STATIC_CONSTEXPR char y = 'M';
char_traits<char>::assign(x, y);
SPROUT_ASSERT_MSG(x == y, "y is assigned to x.");

Complexity

constant.