Lines Matching defs:Append
335 void Append( char_type c ) { Replace(mLength, 0, c); }
336 void Append( const char_type* data, size_type length = size_type(-1) ) { Replace(mLength, 0, data, length); }
337 void Append( const self_type& str ) { Replace(mLength, 0, str); }
338 void Append( const substring_tuple_type& tuple ) { Replace(mLength, 0, tuple); }
339 void Append( const abstract_string_type& readable ) { Replace(mLength, 0, readable); }
358 self_type& operator+=( char_type c ) { Append(c); return *this; }
359 self_type& operator+=( const char_type* data ) { Append(data); return *this; }
360 self_type& operator+=( const self_type& str ) { Append(str); return *this; }
361 self_type& operator+=( const substring_tuple_type& tuple ) { Append(tuple); return *this; }
362 self_type& operator+=( const abstract_string_type& readable ) { Append(readable); return *this; }