Tile - Array - Sort – Ylands

From Bohemia Interactive Community
(Redirected from Ylands Tile - Sort array)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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.