Tile - Array - Sort – Ylands

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Text replacement - "{{DEFAULTSORT:{{#sub:{{PAGENAME}}|14}}}}" to "{{DEFAULTSORT:{{#sub:{{PAGENAME}}|7}}}}")
 
Line 31: Line 31:
----
----
{{Navbox/Ylands}}
{{Navbox/Ylands}}
{{DEFAULTSORT:{{#sub:{{PAGENAME}}|14}}}}
{{DEFAULTSORT:{{#sub:{{PAGENAME}}|7}}}}


[[Category: Instructions]]
[[Category: Instructions]]

Latest revision as of 15:24, 24 November 2023

Sort(Array, Compare instruction)

YlandsTile-755.png

sort(comparator: (objectA: T, objectB: T) => any): void;

Parameters

comparator

Availability

Client, Server, Custom Controller

Description

This instruction will sort the target array using a custom compare instruction.

Notes

  • When the instruction compares two values, it sends the values to the compare function, and sorts the values according to the returned (negative, zero, positive) value.

Example: When comparing 40 and 100, the instruction calls the compare function(40,100). The function calculates 40-100, and returns -60 (a negative value). The sort function will sort 40 as a value lower than 100.

  • Object A - Object B results in an ascending sorting order.
  • Object B - ** Object A** results in a descending sorting order.