wxString implements caching of the last used index so that iterating over
a string is a linear operation even in UTF-8 mode.
- It is nonetheless recommended to use iterators (instead of index bases
+ It is nonetheless recommended to use iterators (instead of index based
access) like this:
@code
wxString& MakeCapitalized();
/**
- Converts all characters to lower case and returns the result.
+ Converts all characters to lower case and returns the reference to the
+ modified string.
@see Lower()
*/
wxString& MakeLower();
/**
- Converts all characters to upper case and returns the result.
+ Converts all characters to upper case and returns the reference to the
+ modified string.
@see Upper()
*/