summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Minderhoud <ralphminderhoud@gmail.com>2017-12-08 16:14:01 -0600
committerRalph Minderhoud <ralphminderhoud@gmail.com>2017-12-08 18:06:45 -0600
commit9ab59343f4f5ae36d5a32e3ae943ad6671aa4df9 (patch)
treee23c004baff5d3c0c3daa20540045468ed4c67f6
parent2c6af835a1fa5518e95d874559bdcd90ce5cb24e (diff)
Added example for Array sort_custom function
-rw-r--r--doc/classes/Array.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/classes/Array.xml b/doc/classes/Array.xml
index a7f9a6e09c..9445a1732e 100644
--- a/doc/classes/Array.xml
+++ b/doc/classes/Array.xml
@@ -284,6 +284,16 @@
</argument>
<description>
Sort the array using a custom method and return reference to the array. The arguments are an object that holds the method and the name of such method. The custom method receives two arguments (a pair of elements from the array) and must return true if the first argument is less than the second, and return false otherwise. Note: you cannot randomize the return value as the heapsort algorithm expects a deterministic result. Doing so will result in unexpected behavior.
+ [codeblock]
+ class MyCustomSorter:
+ static func sort(a, b):
+ if a[0] &lt; b[0]:
+ return true
+ return false
+
+ var my_items = [[5, "Potato"], [9, "Rice"], [4, "Tomato"]]
+ my_items.sort_custom(MyCustomSorter, "sort")
+ [/codeblock]
</description>
</method>
</methods>