mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 23:31:53 -05:00
Merge pull request #46991 from madmiraal/rename-invert-reverse
Rename Array.invert() to Array.reverse()
This commit is contained in:
@@ -446,8 +446,8 @@ int Array::bsearch_custom(const Variant &p_value, Callable p_callable, bool p_be
|
||||
return bisect(_p->array, p_value, p_before, less);
|
||||
}
|
||||
|
||||
void Array::invert() {
|
||||
_p->array.invert();
|
||||
void Array::reverse() {
|
||||
_p->array.reverse();
|
||||
}
|
||||
|
||||
void Array::push_front(const Variant &p_value) {
|
||||
|
||||
Reference in New Issue
Block a user