Template class for concatenating two string expressions into one using operator +
More...
#include <strexpr.h>
Template class for concatenating two string expressions into one using operator +
| A | - Type of first operand |
| B | - Type of second operand |
This object remembers references to the two operands of the addition operation. When asked for the required buffer size for a result, it gives the sum of the lengths of its operands. When asked to place characters in a buffer, place the first operand first, then the second.