Merge pull request #78529 from Chaosus/string_reverse
Add `String.reverse` method
This commit is contained in:
commit
20e24bd2bb
6 changed files with 36 additions and 0 deletions
|
|
@ -305,6 +305,7 @@ public:
|
|||
String replace(const char *p_key, const char *p_with) const;
|
||||
String replacen(const String &p_key, const String &p_with) const;
|
||||
String repeat(int p_count) const;
|
||||
String reverse() const;
|
||||
String insert(int p_at_pos, const String &p_string) const;
|
||||
String erase(int p_pos, int p_chars = 1) const;
|
||||
String pad_decimals(int p_digits) const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue