Name

div()

Class

IntDict

Description

Divide a value.

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);  // There are 84 cds
      inventory.div("cd", 2);
      println(inventory);  // There are 42 cds
    }
    
    

Syntax

  • .div(key, amount)

Return

  • void