|
@ -62,13 +62,6 @@ namespace Jupiter |
|
|
*/ |
|
|
*/ |
|
|
const T *ptr() const; |
|
|
const T *ptr() const; |
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @brief Returns a C-Style string version of the String. |
|
|
|
|
|
* |
|
|
|
|
|
* @return C-Style string representation of the String. |
|
|
|
|
|
*/ |
|
|
|
|
|
virtual const T *c_str() const = 0; |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|
* @brief Sets the String's contents based on the format string and input variables. |
|
|
* @brief Sets the String's contents based on the format string and input variables. |
|
|
* Note: Format specifiers similar to printf. Returns 0 for any type other than char and wchar_t. |
|
|
* Note: Format specifiers similar to printf. Returns 0 for any type other than char and wchar_t. |
|
@ -77,7 +70,6 @@ namespace Jupiter |
|
|
* @param ... Inputs to match the format specifiers. |
|
|
* @param ... Inputs to match the format specifiers. |
|
|
* @return Number of characters written. |
|
|
* @return Number of characters written. |
|
|
*/ |
|
|
*/ |
|
|
size_t format(const String_Type<T> &format, ...); |
|
|
|
|
|
size_t format(const std::basic_string<T> &format, ...); |
|
|
size_t format(const std::basic_string<T> &format, ...); |
|
|
size_t format(const T *format, ...); |
|
|
size_t format(const T *format, ...); |
|
|
virtual size_t vformat(const T *format, va_list args) = 0; |
|
|
virtual size_t vformat(const T *format, va_list args) = 0; |
|
@ -90,7 +82,6 @@ namespace Jupiter |
|
|
* @param ... Inputs to match the format specifiers. |
|
|
* @param ... Inputs to match the format specifiers. |
|
|
* @return Number of characters written. |
|
|
* @return Number of characters written. |
|
|
*/ |
|
|
*/ |
|
|
size_t aformat(const String_Type<T> &format, ...); |
|
|
|
|
|
size_t aformat(const std::basic_string<T> &format, ...); |
|
|
size_t aformat(const std::basic_string<T> &format, ...); |
|
|
size_t aformat(const T *format, ...); |
|
|
size_t aformat(const T *format, ...); |
|
|
virtual size_t avformat(const T *format, va_list args) = 0; |
|
|
virtual size_t avformat(const T *format, va_list args) = 0; |
|
|