Hi everyone: Suppose I have a function "foo" that should receive two functions as parameters. If I have two lambda functions, I can call "foo" as follows:

foo (-> 1),(-> 2)

In this case, "foo" receives two functions, one that just returns 1 and another that returns 2.

However, usually lambda functions are more complicated, so putting both functions on a single line is impractical. Instead, I would like to write two multiline lambda functions. However, I can't figure out for the life of me how to accomplish this in coffeescript- Ideally, I would want to write it as follows, but it throws an error:

foo
    ->
        1
    ,
    ->
        2

The best I can come up with that works is super ugly:

foo.apply [
                ->
                        1
        ,
                ->
                        2
        ]

Can any Coffeescript guru show me how I can do this, without getting an error? Thanks!

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

This should suffice (you could indent the second lamda if you want):

f (-> 
    x = 1
    1 + 2 * x),
-> 
    y = 2
    2 * y

given the function f:

f = (a,b) -> a() + b()

the result should give 3 + 4 = 7

link|improve this answer
Thanks- that's exactly what I needed to know. FYI, had tried it earlier like that with the indentation, but it turns out my slightly out of date Coffeescript version had a bug. I never thought of trying the second parameter without indentation, which is counter-intuitive, but works great, even in my older coffeescript. – Conrad Barski Sep 23 '11 at 18:01
feedback

I believe this is one situation where anonymous functions seem to not be the answer. They are very practical and idiomatic in a lot of situations but even they have limitations and can be less readable if used in extreme situations.

I would define the two functions in variables and then use them as parameters:

func1 = ->
    x = 2
    y = 3
    z = x+y
    return z+2*y

func2 = ->
    a = "ok"
    return a + " if you want this way"

foo func1, func2

But if you decide lambdas would be preferable, just use the parenthesis around the parameters of foo:

foo ((->
    x = 2
    y = 3
    z = x+y
    return z+2*y
  ),(->
    a = "ok"
    return a + " if you want this way"
  )
)

It is not because you are using CoffeScript that you should avoid parenthesis at any cost, I bet :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.