NOTE: We'd have called it {@code Parameter} but the overlap with{@link java.lang.reflect.Parameter} was too confusing.
7172737475767778798081
final ImmutableList.Builder<FunctionParameter> res = ImmutableList.builder(); int i = 0; for (final Class type : types) { final int ordinal = i; res.add(new FunctionParameter() { public int getOrdinal() { return ordinal; } public String getName() {
7071727374757677787980