* @param types the actual types to use, rather than getClass
* @param values the value(s) to append
* @return a new Binder
*/
public Binder append(Class[] types, Object... values) {
return new Binder(this, new Insert(type().parameterCount(), types, values));
}