Reference+
Name
sortValuesReverse()
Class
IntDict
Description
Sort by values in descending order. The largest value will be at [0].
Examples
IntDict inventory; void setup() { size(200, 200); inventory = new IntDict(); inventory.set("cd", 84); inventory.set("tapes", 15); inventory.set("records", 102); println(inventory); inventory.sortValuesReverse(); println(inventory); }
Syntax
.sortValuesReverse()
.sortValuesReverse(stable)
Return
void
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.