[#util-operator_plus-01] = xref:util.adoc[util]::operator+ :relfileprefix: ../ :mrdocs: Addition operators == Synopses Declared in `<util/translation.h>` Append a translated literal to a value of the left operand's type. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename T> T xref:util/operator_plus-02.adoc[operator+]( T const& lhs, xref:util/TranslatedLiteral.adoc[TranslatedLiteral] const& rhs); ---- [.small]#xref:util/operator_plus-02.adoc[_» more..._]# Prepend a translated literal to a value of the right operand's type. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename T> T xref:util/operator_plus-0b.adoc[operator+]( xref:util/TranslatedLiteral.adoc[TranslatedLiteral] const& lhs, T const& rhs); ---- [.small]#xref:util/operator_plus-0b.adoc[_» more..._]# == Return Value * The concatenation of lhs and the converted rhs. * The concatenation of the converted lhs and rhs. == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | The left operand. | *rhs* | The translated literal, converted to T before concatenation. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#