Reference+
Name
sortKeysReverse()
Class
IntDict
Description
Sort the keys alphabetically in reverse (ignoring case). Uses the value as a tie-breaker (only really possible with a key that has a case change).
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.sortKeysReverse(); println(inventory); }
Syntax
.sortKeysReverse()
Return
void
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.