toTuple

Type: function
Alias for ListHelper.toTuple (see its entry for details) with additional argument parsing. For this JS symbol, the arguments are varargs (which is why they appear missing in the parameters), which means they are of variable length, and are parsed accordingly.

Body

function(){
  var args = arguments;
  return ListHelper.toTuple(newList(args));
}

Classpath

Children