Function append_sprintf
Synopsis
#include <include/EASTL/string.h>
this_type & append_sprintf(const value_type *pFormat,...)
Description
No description yet.
Mentioned in
Source
Lines 1864-1873 in include/EASTL/string.h. Line 632 in include/EASTL/string.h.
template <typename T, typename Allocator>
basic_string<T, Allocator>& basic_string<T, Allocator>::append_sprintf(const value_type* pFormat, ...)
{
va_list arguments;
va_start(arguments, pFormat);
append_sprintf_va_list(pFormat, arguments);
va_end(arguments);
return *this;
}