// one of the rare places where we still use mapLike because
// otherwise we miss a cast from Object to whatever the function
// needs
svoid mapLike testFunction(O function, O... params) {
  testFunctionValues(function, params);
}

svoid lambdaMapLike testFunction(IF1 function, O... params) {
  testFunctionValues(function, params);
}