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