* @param count the count of arguments to box
* @param type the array type into which the args will be boxed
* @return a new Binder
*/
public Binder collect(int index, int count, Class type) {
return new Binder(this, new Collect(type(), index, count, type));
}