0
votes
3answers
60 views
PHP: variable-length argument list by reference?
Is it possible to create a PHP function that takes a variable number of parameters all of them by reference?
It doesn't help me a function that receives by reference an array of values nor a function …
1
vote
2answers
116 views
pass variable number of arguments in scala (2.8) case class to parent constructor
I was experimenting with variable constructor arguments for case classes in Scala, but am unable to pass them to the constructor of a case classes' parent:
abstract case class Node(val blocks: (Node …
