To be fair to GI (what! me saying that!) most languages do not have variadic functions, so the GI has nothing to translate into.

Python:

def foo(*args):
  for a in args:
    print(a)

JavaScript:

function foo(...args) {
  for (let a of args)
    print(a);
}

Ruby:

def foo(*args)
  for a in args
    print a
  end
end

Vala:

void foo(...) {
  foreach (var a in va_list())
    print(a);
}


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.