Core/String: Replace Resize argument by flags, it is now capable of handling UTF-8 sequences

Former-commit-id: 472e3504de06166049fcf1b850c38e5646a2d872
This commit is contained in:
Lynix
2015-12-11 13:35:44 +01:00
parent bff0e2df21
commit 3cdf6a9f44
2 changed files with 27 additions and 15 deletions

View File

@@ -119,8 +119,8 @@ namespace Nz
void Reserve(std::size_t bufferSize);
String& Resize(std::intmax_t size, char character = ' ');
String Resized(std::intmax_t size, char character = ' ') const;
String& Resize(std::intmax_t size, UInt32 flags = None);
String Resized(std::intmax_t size, UInt32 flags = None) const;
String& Reverse();
String Reversed() const;