(String what, int much)
| 578 | |
| 579 | |
| 580 | protected void create(String what, int much) { |
| 581 | if (count == keys.length) { |
| 582 | keys = PApplet.expand(keys); |
| 583 | values = PApplet.expand(values); |
| 584 | } |
| 585 | indices.put(what, Integer.valueOf(count)); |
| 586 | keys[count] = what; |
| 587 | values[count] = much; |
| 588 | count++; |
| 589 | } |
| 590 | |
| 591 | /** |
| 592 | * @webref intdict:method |