In Scala, methods can have multiple parameter lists:
def f(x: Int)(y: Int, z: String)(w: Boolean) = "foo"
f(1)(2, "bar")(true) //returns "foo"
Multiple parameter lists are useful for several reasons. You can read more about them on this question.
Also in Scala, an empty argument list can be optionally omitted:
def f() = "foo"
f //returns "foo"
The choice of using an empty parameter list is generally governed by convention, as explained in this question.
So, if you have multiple empty argument lists, you can omit any of them:
def f()()() = "foo"
f()()() //returns "foo"
f()() //returns "foo"
f() //returns "foo"
f //returns "foo"