Yeah, not sure which is better, Java's or C#'s varargs, but it does make
things nicer at times. In C#, the method signature signature screams "I AM
passing an array", but you can pass arguments either way as in Java.
C#:
public void UseVarargs(params int[] args)
{
// Do somet
On Fri, Jun 17, 2011 at 10:17 AM, Mark Rathwell wrote:
>
> In Java, varargs are actually converted to arrays at compile time. It is
> really just some syntactic sugar allowing you to use nicer syntax for array
> arguments, and you can pass the arguments as an array, or as a comma
> delimited sequ
In Java, varargs are actually converted to arrays at compile time. It is
really just some syntactic sugar allowing you to use nicer syntax for array
arguments, and you can pass the arguments as an array, or as a comma
delimited sequence of arguments.
On Fri, Jun 17, 2011 at 10:57 AM, Gregg Reyno
On Thu, Jun 16, 2011 at 6:12 PM, Stuart Halloway
wrote:
>
> Hi Gregg,
> It appears that LocalServiceTestHelper's constructor takes an array
> of LocalServiceTestConfig. Try
> (def bar (LocalServiceTestHelper. (into-array LocalServiceTestConfig [foo])))
> Stu
Hi Stu,
Would you be the Stuart Hall
Hi Gregg,
It appears that LocalServiceTestHelper's constructor takes an array of
LocalServiceTestConfig. Try
(def bar (LocalServiceTestHelper. (into-array LocalServiceTestConfig [foo])))
Stu
Stuart Halloway
Clojure/core
http://clojure.com
> Hi,
>
> I'm trying to make the GAE local testing s
Hi,
I'm trying to make the GAE local testing stuff (http://code.google.com/
appengine/docs/java/tools/localunittesting.html) work with Clojure
and running into a cast problem. Specifically, the example shows
private final LocalServiceTestHelper helper =
new LocalServiceTestHelper(new
L