Exemplo n.º 1
0
utf8_iterator utf8_iterator::end(const std::string& str)
{
	return utf8_iterator(str.end(), str.end());
}
Exemplo n.º 2
0
 inline utf8_iterator	utf8_end (void) const	{ return (utf8_iterator (end())); }
Exemplo n.º 3
0
utf8_iterator utf8_iterator::begin(std::string const &str)
{
	return utf8_iterator(str.begin(), str.end());
}
Exemplo n.º 4
0
 inline utf8_iterator	utf8_begin (void) const	{ return (utf8_iterator (begin())); }