Reference+
Name
sortKeys()
Class
FloatDict
Description
Sort the keys alphabetically (ignoring case). Uses the value as a tie-breaker (only really possible with a key that has a case change).
Examples
FloatDict inventory; void setup() { size(200, 200); inventory = new FloatDict(); inventory.set("coffee",108.6); inventory.set("flour",5.8); inventory.set("tea",8.2); println(inventory); inventory.sortKeys(); println(inventory); }
Syntax
.sortKeys()
Return
void
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.