* @param index the index at which to start dropping
* @param count the number of arguments to drop
* @return a new Binder
*/
public Binder drop(int index, int count) {
return new Binder(this, new Drop(index, Arrays.copyOfRange(type().parameterArray(), index, index + count)));
}