Increases the position. @return self reference
()
| 88 | * @return self reference |
| 89 | */ |
| 90 | public HofArgs inc() { |
| 91 | final int pp = posParam, p = pos + 1; |
| 92 | if(pp != -1) set(pp, Itr.get(p)); |
| 93 | pos = p; |
| 94 | return this; |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Assigns an absolute position. |