operator=

« XPCOM API Reference

Summary

This operator= is a shortcut for the Append family of functions.

 self_type& operator+=(
   const self_type& aString
 );

Parameters

aString
[in] A nsAString to append to this string.
Return Values

This operator returns a reference back to the object being modified to allow operator chaining.

 self_type& operator=(
   const char_type* aData
 );

Parameters

aData
[in] A raw character array to append to this string.
Return Values

This operator returns a reference back to the object being modified to allow operator chaining.

 self_type& operator=(
   char_type aChar
 );

Parameters

aChar
[in] A character to append to this string.
Return Values

This operator returns a reference back to the object being modified to allow operator chaining.

See Also

Append