Reference+
Name
div()
Class
FloatDict
Description
Divide a value.
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); // There is 8.2 of tea inventory.div("tea", 2); println(inventory); // There is 4.1 of tea }
Syntax
.div(key, amount)
Return
void
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.