Summary
This operator is a shortcut for the inherited nsAString::Assign
family of functions.
self_type& operator=( const self_type& aString );
Parameters
- aString
- [in] A
nsEmbedString
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 abstract_string_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.