1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #46991 from madmiraal/rename-invert-reverse

Rename Array.invert() to Array.reverse()
This commit is contained in:
Rémi Verschelde
2021-04-01 13:32:22 +02:00
committed by GitHub
35 changed files with 57 additions and 57 deletions

View File

@@ -83,7 +83,7 @@ public:
void shuffle();
int bsearch(const Variant &p_value, bool p_before = true);
int bsearch_custom(const Variant &p_value, Callable p_callable, bool p_before = true);
void invert();
void reverse();
int find(const Variant &p_value, int p_from = 0) const;
int rfind(const Variant &p_value, int p_from = -1) const;