* @param index the index of the first argument to filter
* @param functions the array of functions to transform the arguments
* @return a new Binder
*/
public Binder filter(int index, MethodHandle... functions) {
return new Binder(this, new Filter(index, functions));
}