Sets the value of the given string target type to be the current string. This saves a temporary over doing |a = b.as_string()|
| 292 | // Sets the value of the given string target type to be the current string. |
| 293 | // This saves a temporary over doing |a = b.as_string()| |
| 294 | void CopyToString(STRING_TYPE* target) const { |
| 295 | internal::CopyToString(*this, target); |
| 296 | } |
| 297 | |
| 298 | void AppendToString(STRING_TYPE* target) const { |
| 299 | internal::AppendToString(*this, target); |