Returns true if another argument is present in the iterator.
| 295 | |
| 296 | // Returns true if another argument is present in the iterator. |
| 297 | bool has_next() { return arg_index_ < number_of_arguments_; } |
| 298 | |
| 299 | // Returns the next argument in the iterator. |
| 300 | // |