Reference+
Name
sortValues()
Class
IntDict
Description
Sort by values in ascending order. The smallest 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.sortValues(); println(inventory); }
Syntax
.sortValues()
.sortValues(stable)
Return
void
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.