diff options
| author | Andreas Haas | 2017-10-10 20:31:48 +0200 |
|---|---|---|
| committer | GitHub | 2017-10-10 20:31:48 +0200 |
| commit | 1d8a546a07a7d7a47d788b5f4156bd54ce48211c (patch) | |
| tree | f6bb80833d23fb3d52669f7fbcdfaa8d971db5cf /core/array.h | |
| parent | 547cc8b7abba1543bf211163cfc8bcb102c158c0 (diff) | |
| parent | 2f173a67abebd14805d6f7c44db2e8b5c4b5cf83 (diff) | |
| download | godot-1d8a546a07a7d7a47d788b5f4156bd54ce48211c.tar.gz godot-1d8a546a07a7d7a47d788b5f4156bd54ce48211c.tar.zst godot-1d8a546a07a7d7a47d788b5f4156bd54ce48211c.zip | |
Diffstat (limited to 'core/array.h')
| -rw-r--r-- | core/array.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/array.h b/core/array.h index 8a647dd13..2c2910310 100644 --- a/core/array.h +++ b/core/array.h @@ -68,9 +68,9 @@ public: Variant front() const; Variant back() const; - void sort(); - void sort_custom(Object *p_obj, const StringName &p_function); - void invert(); + Array &sort(); + Array &sort_custom(Object *p_obj, const StringName &p_function); + Array &invert(); int find(const Variant &p_value, int p_from = 0) const; int rfind(const Variant &p_value, int p_from = -1) const; |
