util::operator+

Append a translated literal to a value of the left operand's type.

Synopsis

Declared in <util/translation.h>

template<typename T>
T
operator+(
    T const& lhs,
    TranslatedLiteral const& rhs);

Return Value

The concatenation of lhs and the converted rhs.

Parameters

NameDescription
lhsThe left operand.
rhsThe translated literal, converted to T before concatenation.