* @param index the index from which to start boxing args
* @param type the array type into which the args will be boxed
* @return a new Binder
*/
public Binder varargs(int index, Class type) {
return new Binder(this, new Varargs(type(), index, type));
}